vishaljkk / building-modern-app-with-nextjs-and-mongodb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Building a Modern App with NextJS and MongoDB

This codebase is the completed code for an article that covers how you can build a modern application with NextJs and MongoDB. The app you will build is called a Macro Compliance Tracker. The app allows you to track your calories and macros, as well as acceptable ranges to be in compliance. Read the article to find out how and why.

MCT App

Prerequisites

  • A recent version of Node.js.
  • MongoDB. Try MongoDB Atlas for free. You can use code ADO200 for a $200 credit.

If you want to add sample data. You can find it in the included data.json file. Import it into your database.

Building the Application

  1. Clone the repo
  2. Navigate to the mct directory.
  3. Run npm install in your terminal to install dependencies.
  4. Run npm run dev to start the local development server.
  5. Update the {YOUR-MONGODB-CONNECTION-STRING} string in the database.js file located in the middleware directory with your MongoDB connection string.
  6. Ensure the client.db('{DATABASE-NAME}') string in the database.js file matches the database name you wish to use.

Navigate to localhost:3000 to see your application in action.

About


Languages

Language:JavaScript 100.0%