本文整理汇总了TypeScript中webhost.Server类的典型用法代码示例。如果您正苦于以下问题:TypeScript Server类的具体用法?TypeScript Server怎么用?TypeScript Server使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Server类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1:
ďťżimport * as webhost from 'webhost';
var server = new webhost.Server({
rootApp: __dirname,
wwwroot: `${__dirname}\\wwwroot`
});
server.configureServices((services): void => {
});
server.configure((app) => {
app.use(webhost.DefaultFiles);
app.use(webhost.StaticFiles);
app.useErrorNotFound();
});
server.listen(1337);
开发者ID:Cliveburr,项目名称:JavascriptLibrary,代码行数:21,代码来源:server.ts
示例2:
import * as webhost from 'webhost';
import * as api from 'webhost-api';
var server = new webhost.Server({
rootApp: __dirname,
wwwroot: __dirname + '/wwwroot'
});
server.configureServices((services): void => {
api.addServices(services, {
routes: [{
name: 'default',
pattern: 'api/{controller}/{index}'
}]
});
});
server.configure((app) => {
//app.debug();
app.use(api.Api);
app.useErrorNotFound();
});
server.listen(1338);
开发者ID:Cliveburr,项目名称:WebHost,代码行数:30,代码来源:Index.ts
示例3: Server
import { Server, DefaultFiles, StaticFiles } from 'webhost';
import { Es6Adapter } from './es6-adapter';
var server = new Server({
rootApp: __dirname,
wwwroot: __dirname + '/../wwwroot'
});
server.configureServices((services): void => {
});
server.configure((app) => {
app.use(Es6Adapter);
app.use(StaticFiles);
app.useErrorNotFound();
});
server.listen(1338);
开发者ID:Cliveburr,项目名称:JavascriptLibrary,代码行数:22,代码来源:serve.ts
示例4: Server
import { Server, DefaultFiles, StaticFiles } from 'webhost';
import { addServices, ClientFile } from 'webhost-websocket';
import ChatHub from './ChatHub';
var server = new Server({
rootApp: __dirname,
wwwroot: __dirname + '/wwwroot'
});
server.configureServices((services): void => {
addServices(services, [
{ path: 'Chat', item: ChatHub }
]);
});
server.configure((app) => {
app.use(ClientFile);
app.use(DefaultFiles);
app.use(StaticFiles);
app.useErrorNotFound();
});
server.listen(1338);
开发者ID:Cliveburr,项目名称:WebHost,代码行数:30,代码来源:Index.ts
注:本文中的webhost.Server类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论