A simple test project to practice MEAN stack. (based on MEAN-CRUD project)
Prerequisites:
- NodeJS (nodejs.org)
- MongoDB (mongodb.org)
To configure the application to suit your setup, edit the config.js:
// config.js
{
port: 3000,
db: {
host: 'localhost',
name: 'Test app'
}
}To start, clone this repository to your local machine and execute the following commands:
$ npm install
$ bower install
$ node server.js