Installation Initial package # NPM npm init -y # YARN yarn init -y { "name": "api-with-graphql", "version": "1.0.0", "main": "index.js", "repository": "https://github.com/WC-Seven/api-with-graphql.git", "author": "WC-Seven <wcsevendev@gmail.com>", "license": "MIT" } ⇧ back to top Install - Apollo Server and GraphpQL # NPM npm install apollo-server graphql graphql-tools apollo-datasource-rest # YARN yarn add apollo-server graphql graphql-tools apollo-datasource-rest ⇧ back to top Install - Apollo Server and GraphpQL # NPM npm i knex pg dotenv # YARN yarn add knex pg dotenv Knex - `knex` PG - `pg` Dotenv - `dotenv` ⇧ back to top Install - JWT(Authentication) # NPM npm i jsonwebtoken # YARN yarn add jsonwebtoken ⇧ back to top