git clone https://github.com/jay11125/HackerNews-GraphQL.gitGo to the backend folder, install dependencies and start the server.
cd backend/
npm install
npm run devNote: If you want to interact with the GraphQL API of the server inside a GraphQL Playground, you can navigate to http://localhost:4000.
Now that the server is running, you can start the React app as well. The commands need to be run in a new terminal tab/window inside the frontend directory (because the current tab is blocked by the process running the server):
npm install
npm startYou can now open your browser and use the app on http://localhost:3000.