Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.71 KB

File metadata and controls

46 lines (31 loc) · 1.71 KB

M.E.R.N Template

This project is a composition of MongoDB/Express.js/React.js/Node.js Setup for any scaled startups or Hackathon. It also includes passport-jwt authentication and authorization.

Great for anyone who wants to get started with their startup idea quickly and for those who are participated in Hackathons and save time on feature development rather than constructing a codebase.

Getting started

Make sure you have npm and node.js install on your computer

Start React app

$ git clone https://github.com/calvinqc/MERN-template.git
$ cd mern-template
$ cd client && npm i && npm start

Client is hosted on localhost:3000/

Start Node Server

$ cd server/ && npm i && npm start

Server is hosted on localhost:8080/

Issue/ Reporting a bug

If you find any errors or bugs, feel free to open an issue

Learn how to setup the template from scratch

Node Setup with Passport-jwt Authorization

Medium Instruction

Code found here

React + Redux-thunk + Router Setup

Medium Instruction

Code found here

Node-simple-template Setup without Passport-jwt

Medium Instruction

Code found here

Deployment

In Progress