Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.01 KB

README.md

File metadata and controls

40 lines (33 loc) · 1.01 KB
page_type languages products description urlFragment
sample
javascript
html
azure
A Mongo + Express + React + Node.js Todo list demonstrating how to instrument your application (and Node.js backend) with Application Insights.
applicationinsights-mern-todo

MERN Stack Application Insights Todo Demo

A Mongo + Express + React + Node.js Todo list demonstrating how to instrument your application (and Node.js backend) with Application Insights. Originally cloned from https://github.com/seeschweiler/mern-stack-part-04

Requirements

  • A local mongoDB server, use MongoDB Compass or run mongod in your terminal.

Running the Demo

First start your local mongo server. Either use MongoDB Compass, or use

mongod

The frontend and backend are separate projects -- first start the backend

cd backend
npm install
npm run start

Start the frontend in a new terminal

cd frontend
npm install
npm run start

Future Todos

  • 1 step run via docker so that local mongo is not required