anroypaul / mern-auth-bolierplate

MERN App Boilerplate with authentication (Node.js/Express/MongoDB/React)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mern-auth-boilerplate

Minimal full-stack MERN app with authentication using passport and JWTs.

This project uses the following technologies:

Configuration

Make sure to add your own MONGOURI from your mLab database in config/default.json.

module.exports = {
  mongoURI: 'YOUR_MONGO_URI_HERE',
  secretOrKey: 'secret'
};

Quick Start

// Install dependencies for server & client
npm install && npm run client-install

// Run client & server with concurrently
npm run dev

// Server runs on http://localhost:5000 and client on http://localhost:3000

About

MERN App Boilerplate with authentication (Node.js/Express/MongoDB/React)


Languages

Language:JavaScript 96.5%Language:HTML 2.4%Language:CSS 1.1%