本文整理汇总了TypeScript中hapi.Server.initialize方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Server.initialize方法的具体用法?TypeScript Server.initialize怎么用?TypeScript Server.initialize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hapi.Server
的用法示例。
在下文中一共展示了Server.initialize方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
(async () => {
const server = new Hapi.Server({ port: 3000 });
await server.register(Schwifty);
await server.register({
plugin: Schwifty.plugin,
options: {
knex: {
client: "sqlite3",
useNullAsDefault: true,
connection: {
filename: ":memory:"
}
}
}
});
Schwifty.assertCompatible(DogModel, DogModel);
// Register a model with schwifty...
server.schwifty(DogModel);
await server.initialize();
const Dog: typeof DogModel = server.models().Dog;
await Dog.query().insert({ name: "Guinness" });
// ... then start the server!
await server.start();
console.log(`Now, go find some dogs at ${server.info.uri}!`);
})();
示例2: Server
// https://github.com/hapijs/hapi/blob/master/API.md#-await-servercacheprovisionoptions
import {Server} from "hapi";
import * as catbox from "catbox";
const server = new Server({
port: 8000,
});
server.initialize();
server.cache.provision({engine: require('catbox-memory'), name: 'countries' });
const cache:catbox.Policy = server.cache({segment: 'countries', cache: 'countries', expiresIn: 60 * 60 * 1000 });
cache.set('norway', 'oslo', 10 * 1000, null);
const value = cache.get('norway', null);
server.start();
server.events.on('start', () => {
console.log('Server started at: ' + server.info.uri);
});
示例3: require
// From https://hapijs.com/api/16.1.1#serverinitializecallback
import * as Hapi from 'hapi';
const Hoek = require('hoek');
const server = new Hapi.Server();
server.connection({ port: 80 });
server.initialize((err) => {
Hoek.assert(!err, err);
});
示例4: require
import * as Hapi from 'hapi';
const server = new Hapi.Server();
server.connection({ port: 80 });
const cache = server.cache({ segment: 'countries', expiresIn: 60 * 60 * 1000 });
cache.set('norway', { capital: 'oslo' }, null, (err) => {
cache.get('norway', (err, value, cached, log) => {
// value === { capital: 'oslo' };
});
});
// provision
// From https://hapijs.com/api/16.1.1#servercacheprovisionoptions-callback
server.initialize((err) => {
server.cache.provision({ engine: require('catbox-memory'), name: 'countries' }, (err) => {
const cache = server.cache({ cache: 'countries', expiresIn: 60 * 60 * 1000 });
cache.set('norway', { capital: 'oslo' }, null, (err) => {
cache.get('norway', (err, value, cached, log) => {
// value === { capital: 'oslo' };
});
});
});
});