Skip to content

sagarsehwag/DevConnector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DevConnector

Social Network for developers, built on MERN Stack i.e. Node, Express, MongoDB(Mongoose) in the backend(API Server) and React, React-Router, Redux, Redux-Thunk in the front end.

Installing Packages & Running Project

Follow these commands exactly to run this project.

npm install
cd client
npm install
cd ..
npm run dev

You need to run "npm install" in client directory as well as global project directory

Scripts Available

"scripts": {
    "start": "node server",
    "server": "nodemon server",
    "client": "npm start --prefix client",
    "dev": "concurrently \"npm run server\" \"npm run client\"",
    "heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
  }
npm start
  1. npm start : Runs the backend of app in the development mode at http://localhost:5000
npm run client
  1. npm run client : Runs the frontend of app in the development mode at http://localhost:3000
npm run server
  1. npm run server : Runs the backend of app in the development mode by nodemon at http://localhost:5000

Running Project in Development Mode

npm run dev

Runs the app in the development mode, which run both backend and front server consecutively.

About

Social Network for developers, built on MERN Stack i.e. Node, Express, MongoDB(Mongoose) in the backend(API Server) and React, React-Router, Redux, Redux-Thunk in the front end.

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors