加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
this_lucky 提交于 2020-07-10 17:58 . change js
/**
* @author yu
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
'use strict';
const http = require('http');
const Hook = require('./core/Hook');
/**
* 入口
*/
class YNode {
/**
* constructor
*
* @param {any} application 应用实例
*/
constructor(application) {
this.server = null;
this.app = application;
}
// web
requestListener(req, res) {
try {
this.app.requestListener(req, res);
} catch(e) {
this.app.handlerException(res, e);
}
}
// handler
handler(req, res) {
new Hook().trigger(req, res, (request, response) => {
this.requestListener(request, response);
});
}
/**
* 获取 http server
*
* @return http server
*/
getServer() {
return http.createServer(this.handler.bind(this));
}
/**
* listen
*
* @param {Number} port
* @param {Function} callback
*
* If you want to create HTTPS server you can do so as shown here
*
* const https = require('https');
* const YNode = require('ynode');
* const app = new YNode({ ... });
* https.createServer({ ... }, app.handler.bind(app)).listen(443);
*
*/
listen(port, callback) {
this.server = this.getServer();
this.server.listen(port, callback);
}
}
module.exports = YNode;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化