Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nidhish-nayak/node-graphql-server
A basic node server for GraphQL APIs.
https://github.com/nidhish-nayak/node-graphql-server
apollo-client basic-programming graphql nodejs
Last synced: about 2 months ago
JSON representation
A basic node server for GraphQL APIs.
- Host: GitHub
- URL: https://github.com/nidhish-nayak/node-graphql-server
- Owner: nidhish-nayak
- Created: 2023-09-21T11:14:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-02T09:30:41.000Z (about 1 year ago)
- Last Synced: 2024-05-30T02:17:08.193Z (8 months ago)
- Topics: apollo-client, basic-programming, graphql, nodejs
- Language: JavaScript
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic graphql server
## Introduction
This project covers the basic parts for a graphql server. Any beginner can go use the server to analyze the flow of data and process to get more insights.
## Setup
Install dependencies:
```bash
npm install
```Run locally:
```bash
npm run dev
```After installing the dependencies, you can login to Apollo client for more configurations. This can be found generally on the internet. Post setting these up, you can use Postman or spin up your own frontend to test the server requests and responses.
### Happy Coding!