Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Strapi | 53,951 | 221 | 113 | a day ago | 281 | May 11, 2022 | 381 | other | JavaScript | |
🚀 Strapi is the leading open-source headless CMS. It’s 100% JavaScript, fully customizable and developer-first. | ||||||||||
Rap2 Delos | 7,468 | 2 months ago | 82 | mit | TypeScript | |||||
阿里妈妈前端团队出品的开源接口管理工具RAP第二代 | ||||||||||
Koa2 Note | 4,759 | a year ago | 25 | mit | ||||||
《Koa2进阶学习笔记》已完结🎄🎄🎄 | ||||||||||
Cool Admin Midway | 1,920 | 2 days ago | 68 | April 02, 2022 | 59 | mit | TypeScript | |||
🔥 cool-admin(midway版)一个很酷的后台权限管理框架,模块化、插件化、CRUD极速开发,永久开源免费,基于midway.js 3.x、typescript、typeorm、mysql、jwt、vue3、vite、element-ui等构建 | ||||||||||
Nodejs Koa Blog | 1,617 | 5 months ago | 96 | mit | JavaScript | |||||
基于 Node.js Koa2 实战开发的一套完整的博客项目网站 | ||||||||||
Itranswarp.js | 1,393 | 4 years ago | 15 | apache-2.0 | JavaScript | |||||
Deprecated. See https://github.com/michaelliao/itranswarp | ||||||||||
Ghchat | 920 | 5 months ago | 52 | mit | JavaScript | |||||
:octocat: 📱A chat application for GitHub. React + PWA + Node(koa2) + Typescripts + Mysql + Socket.io | ||||||||||
Vue Qq | 906 | 6 months ago | 46 | mit | Vue | |||||
🎨 Vue family bucket with socket.io and express/koa2 , create a web version of mobile QQ, supporting real-time group chat, real-time private chat, special care, shielding chat, smart IP geographic location, real-time display temperature and other QQ core functions | ||||||||||
Koa2 Blog | 878 | 4 months ago | 2 | JavaScript | ||||||
node+koa2+mysql | ||||||||||
Ejyy | 840 | 6 months ago | agpl-3.0 | TypeScript | ||||||
「e家宜业」是一整套开源智慧物业解决方案,基于nodejs、typescript、koa、vue开发,包含web中台、业主小程序、员工小程序、公众号、物联网应用等,涵盖业主服务、物业运营、智能物联、数据统计等主要业务。 |
从2017年2月份开始写这本开源电子书,是为了记录自己的学习轨迹和分享技术心得,本开源书的Koa2的基础进阶教程已经完结,更多的Koa.js的高阶学习会在后续新开几本书进行探索。感谢这一年来所有读者的关注!O(∩_∩)O。
本书为Koa.js
2.x 的入门书籍,如果想了解更多 Koa.js
的原理,可阅读 《Koa.js 设计模式-学习笔记》
更多前端技术学习可关注公众号 大海码
DeepSeaCode
自ES6确定和ES7的async/await开始普及,node.js的发展变得更加迅速,可以预见到JavaScript中令人“头疼”的多层嵌套回调(注意是”多层嵌套回调“)将会使用Promise + async/await的方式逐渐替代(不是完全替代,多层嵌套回调也有其特殊的应用场景)。
基于async/await实现中间体系的koa2框架将会是是node.js web开发方向大势所趋的普及框架。基于generator/yield的koa1将会逐渐被koa2替代,毕竟使用co.js来处理generator是一种过渡的方式,虽然有其特定的应用场景,但是用async/await会更加优雅地实现同步写法。
从学生到工作写了几年的代码,觉得虽然学习新语言,新框架的主要目的是为了解决实际问题,其中更重要的是要每次入门了一门新技术后要及时留下点学习的痕迹,方便以后忘记可以从学习轨迹中迅速上手。