Skip to content

conorheffron/mern-sandbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mern-sandbox

Tech

  • MERN Stack, Node v24, npm v11.6.2

Install MongoDB Community Version & Run Server

docker pull mongodb/mongodb-community-server:latest
docker run --name mongodb -p 27017:27017 -d mongodb/mongodb-community-server:latest

docker-ps

Use MongoDB Compass Client to verify DB & Data

compass-client

Start backend server in VS Code & see logs per CRUD operation
cd mern-sandbox/server
npm install
npm start

run-server

Start Web/Client server in VS Code (new terminal tab)
cd mern-sandbox/client
npm install
npm run dev

run-client

View UI (use chrome dev tools to see client side logging)

http://localhost:5173/

local-ui