Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinf/celticexpress
https://github.com/colinf/celticexpress
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/colinf/celticexpress
- Owner: colinf
- License: mit
- Created: 2011-10-10T21:58:38.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-10-10T22:00:12.000Z (about 13 years ago)
- Last Synced: 2024-04-14T14:12:13.099Z (7 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Express Coffee
This is a template node web app.
## Technologies
This is a template that can be used to create nodejs applications using* Node v0.4.11
* Express v2.4.6
* CoffeeScript! v1.1.2
* Coffeekup v0.3.0## Requirements
* [NodeJs](http://nodejs.org)
* [Express](http://expressjs.com)
* [CoffeeScript](http://coffeescript.org)
* [Coffeekup](http://coffeekup.org/)
* [Jasmine-Node](https://github.com/mhevery/jasmine-node/)These will install with npm, just do
```
npm install
```In your project directory.
---
## Install, Build, Run, Test, and Watch
```
# Install nodejs and npmgit clone http://github.com/twilson63/express-coffee.git [project-name]
cd [project-name]
npm install# Build
cake build
# Run
node server.js
# Test
cake spec
# Watch - Compile when files change.
cake watch
```
## Thanks to
* [Jeremy Ashkenas](https://github.com/jashkenas) for creating coffee-script
* [TJ Holowaychuk](https://github.com/visionmedia) for creating express
* [Maurice Machado](https://github.com/mauricemach) for creating coffeekup
* [Miško Hevery](https://github.com/mhevery) for creating Jasmine-Node
* [Pivotal Labs](http://github.com/pivotal/jasmine) for creating Jasmine## About
express-coffee is a template or boiler-plate to get started writting
express web applications in CoffeeScript. It comes ready to go with base
setup for an Express Web App. It includes a Cakefile that lets you build,
spec, and watch your coffeescript as you develop. You hack in the src folder
and run cake build to build you server files, write your jasmine tests in
your spec folder and run cake spec to run your test suite. Create your
coffeekup views in the views folder and put your public assets in the public
folder. Enjoy your express-coffee~
c[_] 0.1.0Coffeekup Layout View borrowed from CoffeeKup Examples
## License
See LICENSE
## Ready to Deploy on Heroku
[heroku](http://devcenter.heroku.com/articles/node-js)