/Pokedex-GraphQL

This is a simple demo Pokedex app built to showcase and practise GraphQL.

Primary LanguageJavaScript

Pokedex Graphql Demo

 

Pokedex-Graphql

Github top language Github language count Repository size License

About   |   Technologies   |   Requirements   |   Starting   |   Author


🎯 About

Simple project built as an testbed for learning GraphQL and the process of developing custom backend and frontend on GraphQL.

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have Git and Node installed.

🏁 Starting

Initial Setup

# Clone this project
$ git clone https://github.com/balub/Pokedex-GraphQL

# Access
$ cd pokedex-graphql-demo

Backend

$ cd backend

# Install dependencies
$ npm install

# Run the json server
$ npm start json_server

# Run the GraphQL server
$ npm start dev

# The GraphQL server will initialize in the <http://localhost:4000> and the Json server in <http://localhost:3000>

Frontend

$ cd frontend

# Install dependencies
$ npm install

# Run the server
$ npm start 

# The server will initialize in the <http://localhost:3001> 

Made by Balu B Naidu

 

Back to top