Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/two-n/generator-express-coffee
A Yeoman generator that makes a boilerplate express app, in CoffeeScript, with passport login.
https://github.com/two-n/generator-express-coffee
Last synced: 17 days ago
JSON representation
A Yeoman generator that makes a boilerplate express app, in CoffeeScript, with passport login.
- Host: GitHub
- URL: https://github.com/two-n/generator-express-coffee
- Owner: two-n
- License: mit
- Created: 2013-11-19T02:31:21.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-24T07:36:22.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T15:18:21.082Z (9 months ago)
- Language: CoffeeScript
- Size: 298 KB
- Stars: 7
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A generator for [Yeoman](http://yeoman.io).
#About
This is a Yeoman generator to create a boilerplate express app (written in CoffeeScript) that optionally enables authorized user login with Passport. The resulting app uses Grunt to control development tasks.
## Install
First, make sure you have Yeoman installed, with
$ npm install -g yo
From then on, you can get information about Yeoman and your installed generators with$ yo --help
Then, install this generator with$ npm install -g generator-express-coffee
Time to actually create your app. Create a directory for the app, and navigate into it. Then, execute the generator.$ mkdir my_new_app
$ cd my_new_app
$ yo express-coffee:app
If you don't have MongoDB running on your machine, start it with$ mongod
Start your app in development environment on port 3000$ grunt
Run Mocha tests with$ grunt test
Happy Coding!## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)