A simple user management application demonstrating GraphQL integration with React frontend and Node.js backend using Apollo Client and Apollo Server.
- Javascript
- ReactJS
- Apollo client
- NodeJS
- Express
- Apollo server
- GraphQL
- Open a terminal and navigate to the
/serverdirectory:cd server - Install server dependencies:
npm install - Start the GraphQL server:
npm run server - Open a new terminal window and navigate to the
/appdirectory:cd app - Install client dependencies:
npm install - Start the React application:
npm start - The React app should now be running at http://localhost:3000 and the GraphQL server at http://localhost:4000.