MongoDB

Express.js Login Page Example

This post will look show an Express.js login page example using the EJS template engine and connecting to a MongoDB database.
This example will be using code from previous articles, so if you do not already know how to get started with Express.js or how to configure a route, go and check out how to …

Configuring a MongoDB Connection in Expressjs

Configuring a MongoDB connection in Expressjs requires a few lines of code which can easily be placed within your node application. If you haven’t recently set up an Expressjs project, you can learn how to do so here.
Firstly, download the mongodb package.
$ npm install mongodb
This will download the package into your project’s …