用 restify 的时候封装的一个小东西,感觉也不算框架,但是比直接用 restify 开发方便很多。
在新建一个 API 服务的时候,只需要在文件中定义好 API 的结构,如
Test: {
hello: {
params: ["name", "msg"],
methods: ["post", "get"],
},
},
然后在 Test.js 中写好 hello 方法,就能访问 /Test/hello 了
Github 地址: https://github.com/tfh93121/node-mt-api
新人第一次发帖,欢迎大佬提意见。