Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Graphql | 14,056 | 2 days ago | ||||||||
Awesome list of GraphQL | ||||||||||
Nocobase | 4,368 | 9 | 11 hours ago | 111 | August 15, 2022 | 115 | agpl-3.0 | TypeScript | ||
NocoBase is a scalability-first, open-source no-code/low-code platform to build internal tools. | ||||||||||
React Blog | 712 | 3 months ago | 62 | mit | JavaScript | |||||
react hooks + koa2 + sequelize + mysql 构建的个人博客。具备评论、通知、上传文章等等功能 | ||||||||||
Kails | 513 | 3 months ago | 3 | mit | JavaScript | |||||
A Web App like Ruby on Rails with Koa2, Webpack and Postgres | ||||||||||
Koa Restql | 440 | 7 years ago | 3 | mit | JavaScript | |||||
Build real RESTful APIs without writing one line of code. | ||||||||||
Egg Commerce | 248 | 5 years ago | 3 | JavaScript | ||||||
Xanaducompany | 242 | 5 days ago | mit | Vue | ||||||
企业门户网站管理系统,包括前台展示、后台管理、后端服务(Node.js、Koa、sequelize、MySQL),前端主要使用Vue+ElementUI。Vue3预览 https://company.zerotower.cn/ ;Vue2预览为下方链接。 | ||||||||||
Koa2 Blog | 140 | 4 years ago | 3 | HTML | ||||||
第一个web项目,仿照cnode,欢迎新建账号试用 | ||||||||||
Eaglet | 117 | 5 years ago | 2 | mit | TypeScript | |||||
最简單直接的 Koa2 的脚手架 | ||||||||||
Koa2 Ratelimit | 107 | 172 | 40 | 2 months ago | 20 | March 29, 2023 | 12 | mit | JavaScript | |
Rate-limiting middleware for Koa2 ES6. Use to limit repeated requests to APIs and/or endpoints such as password reset. |
A service demo using koa and sequelize.
node --harmony app
Runs on http://localhost:3000, and is mounted on /v1
curl --data "name=Test%20Name" http://localhost:3000/v1/users
{
"createdAt": "2014-01-02T19:53:41.919Z",
"updatedAt": "2014-01-02T19:53:41.919Z",
"name": "Test Name",
"id": 1
}
curl http://localhost:3000/v1/users/1
{
"id": 1,
"name": "Test Name",
"createdAt": "2014-01-02T19:53:41.919Z",
"updatedAt": "2014-01-02T19:53:41.919Z"
}