Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tr1sm0s1n/bun-graphql-api
Simple API demonstrating CRUD operations in TypeScript with Bun and GraphQL.
https://github.com/tr1sm0s1n/bun-graphql-api
api bun crud graphql typescript
Last synced: 16 days ago
JSON representation
Simple API demonstrating CRUD operations in TypeScript with Bun and GraphQL.
- Host: GitHub
- URL: https://github.com/tr1sm0s1n/bun-graphql-api
- Owner: tr1sm0s1n
- License: mit
- Created: 2023-09-07T15:35:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-28T11:30:31.000Z (4 months ago)
- Last Synced: 2024-08-28T12:47:40.765Z (4 months ago)
- Topics: api, bun, crud, graphql, typescript
- Language: TypeScript
- Homepage:
- Size: 40 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Bun-GraphQL-API
Simple API demonstrating CRUD operations in TypeScript with Bun and GraphQL.
## 🛠 Built With
[![Bun Badge](https://img.shields.io/badge/Bun-000?logo=bun&logoColor=fff&style=for-the-badge)](https://bun.sh/)
[![GraphQL Badge](https://img.shields.io/badge/GraphQL-E10098?logo=graphql&logoColor=fff&style=for-the-badge)](https://graphql.org/)
[![TypeScript Badge](https://img.shields.io/badge/TypeScript-3178C6?logo=typescript&logoColor=fff&style=for-the-badge)](https://www.typescriptlang.org/)## ⚙️ Run Locally
Clone the project
```bash
git clone https://github.com/tr1sm0s1n/bun-graphql-api.git
cd bun-graphql-api
```Install Bun
```bash
curl -fsSL https://bun.sh/install | bash
```Install dependencies
```bash
bun install
```Start the application
```bash
bun run dev
```Open [browser](http://localhost:4000) for queries and mutations.