开源Nodejs微服务项目推荐:micro
https://github.com/zeithq/micro Micro — Async HTTP microservices Features Easy . Designed for usage with async and await ( more ) Fast . Ultra high performance (even JSON parsing is opt-in). Micro . The whole project is ~100 lines of code. Agile . Super easy deployment and containerization. Simple . Oriented for single purpose modules (function). Explicit . No middleware. Modules declare all dependencies. Standard . Just HTTP! Example The following example sleep.js will wait before responding (without blocking!) import { send } from 'micro'; import sleep from 'then-sleep'; export default async