반응형
Grafbase - 인스턴트 서버리스 GraphQL 백엔드를 소개합니다.
홈페이지에서는 아래와 같이 소개하고 있군요.
grafbase lets you go from idea to serverless GraphQL backend in seconds.
한마디로, grafbase 는 인스턴트 서버리스 GraphQL 백엔드라고 머릿속에 넣어두시면 됩니다.
시작은 아래와 같이하시면 되고요..
Getting Started
Run the following command in a new directory:
npx grafbase init
Then populate grafbase/schema.graphql with this schema:
type Todo @model {
id: ID!
title: String!
complete: Boolean!
}
To start your local development environment run this command:
npx grafbase dev
You can interact with your GraphQL API using the Playground, which runs on http://localhost:4000 by default.
Create a new Todo:
mutation {
todoCreate(input: { title: "Hello, world!", complete: false }) {
todo {
id
title
complete
}
}
}
Congratulations! You have just built your first Todo GraphQL backend.
Grafbase의 특징을 간단하게 정리하자면 아래와 같습니다.
- 개발자를 위한 Edge-Native 데이터 플랫폼
- 가볍고 빠르게 GraphQL 백엔드를 로컬에서 실행
- SDL로 스키마 설정하고 실행하면 끝
- Edge 서버에 배포해서 프로덕션 운영하고 사용량 단위로 가격 지불
좀 더 자세한 사항은 아래 홈페이지 접속해보시면 될것 같네요..
오늘의 블로그는 여기까지고요..
항상믿고 봐주셔서 감사합니다.
728x90
300x250
'좋아하는 것_매직IT > 96.IT 핫이슈' 카테고리의 다른 글
Connect-Web : 브라우저에서 RPC 호출하는 TypeScript 라이브러리 (buf.build) (0) | 2022.08.11 |
---|---|
pls - Prettier & Powerful 'ls' (github.com/dhruvkb) (0) | 2022.08.11 |
Visual Studio Code 2022 7월 버전 업데이트 (code.visualstudio.com) (0) | 2022.08.10 |
구글, 애플에게 RCS를 수용하라는 Get The Message 광고 캠페인 시작 (0) | 2022.08.10 |
mCaptcha - PoW 기반의 무료 캡차 오픈소스 (github.com/mCaptcha) (0) | 2022.08.09 |