加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
yulifu 提交于 2018-05-09 20:13 . change js
/**
* @author yu
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
'use strict';
var http = require('http');
var Y = require('./Y');
var Hook = require('./core/Hook');
var Application = require('./web/Application');
var InvalidConfigException = require('./core/InvalidConfigException');
/**
* 入口
*/
class YNode {
/**
* constructor
*
* @param {Object} config 配置信息
*/
constructor(config) {
if(undefined === config) {
throw new InvalidConfigException('The app config is required');
}
this.config = config;
this.server = null;
this.app = new Application(config);
}
// web
requestListener(req, res) {
try {
this.app.requestListener(req, res);
} catch(e) {
this.app.handlerException(res, e);
}
}
// handler
handler(req, res) {
Hook.getInstance().trigger(req, res, () => {
this.requestListener(req, res);
});
}
/**
* 获取 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
*
* var https = require('https');
* var YNode = require('ynode');
* var app = new YNode({ ... });
* https.createServer({ ... }, app.handler.bind(app)).listen(443);
*
*/
listen(port, callback) {
this.server = this.getServer();
this.server.listen(port, callback);
}
}
/**
* handler
*/
YNode.Y = Y;
module.exports = YNode;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化