Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benoitvallon/koa-and-generators
Sample from a tuts+ tutorial (wrong API design but cool example)
https://github.com/benoitvallon/koa-and-generators
Last synced: 10 days ago
JSON representation
Sample from a tuts+ tutorial (wrong API design but cool example)
- Host: GitHub
- URL: https://github.com/benoitvallon/koa-and-generators
- Owner: benoitvallon
- License: mit
- Created: 2014-11-04T18:52:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-04T19:24:35.000Z (about 10 years ago)
- Last Synced: 2024-10-11T09:11:03.415Z (about 1 month ago)
- Language: JavaScript
- Size: 16.1 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
koa-and-generators
==================Sample from a tuts+ tutorial (wrong API design but cool example)
## Installation Instruction
```
$ npm install
```To use Koa you must be running __node 0.11.9__ or higher for generator support, and must run node(1)
with the `--harmony` flag. If you don't like typing this, add an alias to your shell profile:```
alias node='node --harmony'
```
Also import the dictionary collection using instructions in import.txt## To run the application
```
node --harmony index.js
```## Running tests
```
$ npm test
```# License
MIT