@537/service 中文文档教程

发布于 7年前 浏览 24 更新于 3年前

@537/service

构建状态

express 的“设置并忘记”固执己见的实现。 对无状态 api 有用。

const service = require('@537/service');
const pck = require('./package.json');
const index_routes = require('routes/index');
const user_routes = require('routes/user');

// sets up all the routes and middleware
const app = service.bootstrap(pck, {
  '/': index_routes,
  '/user': user_routes
});

// do any extra config here....

// binds the express app to a port and starts listening
const server = service.start(app);

// alternatively:

// set up routes and listen on the port right away
const server = service.run(pck, {
  '/': index_routes,
  '/user': user_routes
});

License

麻省理工学院

@537/service

build status

A 'set and forget' opinionated implementation of express. Useful for stateless apis.

const service = require('@537/service');
const pck = require('./package.json');
const index_routes = require('routes/index');
const user_routes = require('routes/user');

// sets up all the routes and middleware
const app = service.bootstrap(pck, {
  '/': index_routes,
  '/user': user_routes
});

// do any extra config here....

// binds the express app to a port and starts listening
const server = service.start(app);

// alternatively:

// set up routes and listen on the port right away
const server = service.run(pck, {
  '/': index_routes,
  '/user': user_routes
});

License

MIT

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文