Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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!