Skip to content

MERN stack TODO demo instrumented with Application Insights (Node.js + Web)

Notifications You must be signed in to change notification settings

Azure-Samples/applicationinsights-mern-todo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 

Repository files navigation

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