This course is designed to help you get off the ground building a REST API in NodeJS that you can use for your web or mobile application. This course will provide you with the tools and understanding of how to go about building an API server, accessing and manipulating data via this API. The database will be a MongoDB instance and you will be utilizing NodeJS to commnicate with that database and the client using the ExpressJS framework. This API will be able to serve data to web clients as well as mobile applications.
If you want to learn how to leverage the power of NodeJS and build a powerful API for your application you should take this course. The material will be covered in a manner that flows with how you would create an application in the wild so you can train your thought process to build your next great app.
Getting Started
This lecture you will learn what to expect, what tools we'll be using to build our node.js API and how to move on from here.
Creating a MongoDB Database
Building the API
In this lecture you will include the dependencies to parse the body of a POST request and hash a password. You will then create a new database configuration file.
In this lecture you will connect to your MongoDB instance using your database configuration file that you just created. You will then create a users route that will include the expressjs router. In the next lecture you will continue to build upon this route.
In this lecture you will create a userschema and model using mongoose. This is what will communicate with MongoDB and allow you to efficiently create and find users.