├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── controllers │ └── index.js ├── routes │ └── index.js └── views │ ├── index.ect │ └── layouts │ └── template.ect ├── config └── default.js ├── index.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/app/controllers/index.js -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /app/views/index.ect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/app/views/index.ect -------------------------------------------------------------------------------- /app/views/layouts/template.ect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/app/views/layouts/template.ect -------------------------------------------------------------------------------- /config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/config/default.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmyfreak/koa-starter/HEAD/test/test.js --------------------------------------------------------------------------------