Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 734 Bytes

README.md

File metadata and controls

51 lines (31 loc) · 734 Bytes

Simple MERN Application

This is the codebase for a MERN application to go with the blog post located here. It is not intended to be a complicated or production ready application, but rather to explain in easy-to-understand terms how the different pieces of the MERN stack fit together.

Simple MERN application by Tim Smith

To Download:

git clone https://github.com/iamtimsmith/simple-mern-app.git

Then:

npm install

or

yarn

To run the server only:

npm run server

or

yarn server

To run the client only:

npm run client

or

yarn client

To run both together:

npm run dev

or

yarn dev