Notes app in Node.js and MongoDB

You need:

  • Database (MongoDB)
  • Google Console Account to create the API Auth Key's

Create .env file

Create a .env file to store your credentials. Example below:

MONGODB_URI = mongodb+srv://<username>:<password>@mongodburlhere
GOOGLE_CLIENT_ID= YOUR_GOOGLE_ID_HERE
GOOGLE_CLIENT_SECRET= YOUR_GOOGLE_CLIENT_SECRET_HERE
GOOGLE_CALLBACK_URL=http://localhost:5000/google/callback

Installation

To install and run this project - install dependencies using npm and then start your server:

$ npm install
$ npm start

We welcome contributions from the community. If you'd like to collaborate, please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes and commit them (git commit -m 'Add some feature').
  4. Push to the branch (git push origin feature-branch).
  5. Open a Pull Request.

Thanks.