https://github.com/pana/koa-generator
An yeoman koa application generator
https://github.com/pana/koa-generator
Last synced: 6 months ago
JSON representation
An yeoman koa application generator
- Host: GitHub
- URL: https://github.com/pana/koa-generator
- Owner: Pana
- Created: 2015-04-28T02:09:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-03T01:59:40.000Z (over 10 years ago)
- Last Synced: 2025-03-26T16:21:20.767Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 129 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
koa yeoman generator
====## Usage
You should already install node & npm.```
$ npm install -g yo
$ npm install -g generator-koaapp
$ mkdir new-project && cd $_
$ yo koaapp
```## Middlewares
* [router](https://github.com/alexmingoia/koa-router)
* [logger](https://github.com/koajs/logger)
* [koa-ejs](https://github.com/koajs/ejs) You can also use [koa-view](https://github.com/queckezz/koa-views)
* [static files](https://github.com/koajs/static)
* [ORM sequelize](http://docs.sequelizejs.com/en/latest/)
* [error handler](https://github.com/koajs/error)
* [session & cookie](https://github.com/koajs/session), [a generic one](https://github.com/koajs/generic-session)
* [body-parser](https://github.com/dlau/koa-body)
* [nested query string support](https://github.com/koajs/qs)