This repository is for learning Apollo with TypeScript, including two project, "server" and "client" apps.
Firstly, boot apollo server with the following commands.
cd server
npm install # or yarn
npm run db:initialize
npm start
Apollo server will boot on localhost:4000
Next, boot React App at client.
cd client
npm install # or yarn
npm start
Then, browser will open http://localhost:3000 and data from apollo server will be displayed.
- Apollo Server v2
- Sequelize
- SQLite3
- React
- React Apollo
- react-apollo-hooks