项目作者: soulreaper02

项目描述 :
A minimal MEAN stack skeleton with all required configurations.
高级语言: TypeScript
项目地址: git://github.com/soulreaper02/MEAN-SKELETON.git
创建时间: 2018-04-10T08:57:58Z
项目社区:https://github.com/soulreaper02/MEAN-SKELETON

开源协议:

下载


Build Status

Introduction

A minimal MEAN stack skeleton with all required configurations.

Configuration

  1. Please ensure that mongoDB and Node is installed and running on your local.

  2. Run the following command in your local project directory to build all required node modules.

    1. npm install
  3. You can modify the port number and database name in the following line in app.js:

    1. mongoose.connect('localhost:27017/node-angular');

    to

    1. mongoose.connect('localhost:<port>/<your-database-name>');
  4. Start webpack using the following command:

    1. npm run build
  5. Start your node server using following command:

    1. npm start
  6. Goto localhost and your instance will be running