加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 347 Bytes
一键复制 编辑 原始数据 按行查看 历史
文翼 提交于 2015-06-17 13:55 . Fix #27, fix #39: Added server side
var express = require('express');
var app = express();
app.use(express.static('.'));
app.get('/examples/:project/:func', require('./examples'));
var server = app.listen(3000, function () {
var host = server.address().address;
var port = server.address().port;
console.log('Examples app listening at http://%s:%s', host, port);
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化