netfishx / koa-todo

a todo example write with koa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

koa-todo

a todo example write with koa

Tree

├── LICENSE
├── Makefile
├── README.md
├── app.js
├── common
│   └── db.js
├── config.js
├── controllers
│   ├── home.js
│   └── task.js
├── models
│   └── task.js
├── package.json
├── public
│   ├── images
│   │   ├── doing.gif
│   │   └── finished.jpg
│   └── styles
│       ├── index
│       │   ├── images
│       │   │   ├── bg_1.png
│       │   │   ├── email.png
│       │   │   ├── home.png
│       │   │   ├── msn.png
│       │   │   ├── ok.gif
│       │   │   ├── qq.png
│       │   │   └── website.png
│       │   └── style.css
│       └── reset.css
├── routes.js
├── test
└── views
    ├── error.html
    ├── index.html
    ├── layout.html
    └── task
        └── edit.html

About

a todo example write with koa

License:MIT License