Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anistark/neem
Node Express Ejs Mongo Boilerplate
https://github.com/anistark/neem
Last synced: 14 days ago
JSON representation
Node Express Ejs Mongo Boilerplate
- Host: GitHub
- URL: https://github.com/anistark/neem
- Owner: anistark
- License: isc
- Created: 2016-01-15T19:12:20.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-18T18:47:14.000Z (almost 9 years ago)
- Last Synced: 2024-09-21T12:52:36.423Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Node Express Ejs Mongo
=====================Stuffs Used :
#### [Node](https://nodejs.org)
#### [Express](http://expressjs.com/)
#### [Ejs](http://ejs.co/)
#### [MongoDb](https://www.mongodb.org/)
Setup
Install via npm
```
mkdir projectName
cd projectName
npm init
npm install neem
cp -r node_modules/neem .
```Install via git
```
$ git clone --depth=1 https://github.com/anistark/neem.git projectName
$ cd neem
$ npm install
```**The project will be a bit different in both the processes shown above. But you can rename you project or edit the package.json file accordingly.
Configure your project
```
$ cp config_example.js config.js
```Replace the config values accordingly.
Start server:
```
$ npm start
```If you have foreman or nodemon, you can start that (I personally prefer nodemon) :
```
$ nodemon
```Suggestions welcome for enhancing this boilerplate stack