转载

一个好用的koa2模板

koa2-boilerplate

This boilerplate shows ways to

  • Use mysql in Koa2
  • CORS Ajax request
  • Ajax Login and Ajax Logout in Koa2, based onkoa-passport andpassport-local
  • Export excel in Koa2, based onexcel-export
  • Serve static files in Koa2
  • Integrate with Redux App

Preview

Online Demo

Usage

$ npm install 
$ npm run start

Screenshots

  • Login Page

一个好用的koa2模板

Structure

.
├── README.md
├── app
│   └── entry.js
├── package.json
├── src
│   ├── app.js
│   ├── config
│   │   ├── base.js
│   │   ├── config.js
│   │   └── passport.js
│   ├── lib
│   │   └── db.js
│   ├── middleware
│   │   ├── checkauth.js
│   │   └── index.js
│   ├── models
│   │   └── account.js
│   ├── public
│   │   └── index.html
│   └── routes
│       ├── auth.js
│       ├── index.js
│       ├── main.js
│       └── open.js
├── start.js
└── webpack.config.js
原文  https://github.com/superalsrk/koa2-boilerplate
正文到此结束
Loading...