July 2019
Intermediate to advanced
416 pages
10h 6m
English
For our ToDo application, we are going to start off with the server implementation. As in the previous chapter, we are going to create a separate client and server folder structure, with the Node.js code being added to the server code.
We're going to start our journey into creating a GraphQL server with the database code. All the data for our client is going to come from the database, so it makes sense for us to put everything we need in place. As in the previous chapter, we are going to install the mongoose packages that we need to work with MongoDB:
npm install mongoose @types/mongoose --save-dev