当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Server.start方法代码示例

本文整理汇总了TypeScript中@hapi/hapi.Server.start方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Server.start方法的具体用法?TypeScript Server.start怎么用?TypeScript Server.start使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@hapi/hapi.Server的用法示例。


在下文中一共展示了Server.start方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

server.register(Nes).then(() => {

    return server.start().then(() => {

        server.broadcast('welcome!');
    });
});
开发者ID:Flarna,项目名称:DefinitelyTyped,代码行数:7,代码来源:broadcast-server.ts

示例2:

server.register(Nes).then(() => {

    server.subscription('/item/{id}');

    return server.start().then(() => {

        server.publish('/item/5', {id: 5, status: 'complete'});
        server.publish('/item/6', {id: 6, status: 'initial'});
    });
})
开发者ID:Flarna,项目名称:DefinitelyTyped,代码行数:10,代码来源:subscriptions-server.ts

示例3: async

server.register([Basic, Nes]).then(() => {

    // Set up HTTP Basic authentication

    interface User {
        username: string;
        password: string;
        name: string;
        id: string;
    }

    const users: { [index: string]: User } = {
        john: {
            username: 'john',
            password: '$2a$10$iqJSHD.BGr0E2IxQwYgJmeP3NvhPrXAeLSaGCj6IR/XU5QtjVu5Tm',   // 'secret'
            name: 'John Doe',
            id: '2133d32a'
        }
    };

    const validate: Basic.Validate = async (request, username, password, h) => {

        const user = users[username];
        if (!user) {
            return { credentials: null, isValid: false };
        }

        let isValid = await Bcrypt.compare(password, user.password)

        return { isValid, credentials: { id: user.id, name: user.name } };
    };

    server.auth.strategy('simple', 'basic', {validateFunc: validate});
    server.auth.default('simple');

    // Configure route with authentication

    server.route({
        method: 'GET',
        path: '/h',
        options: {
            id: 'hello',
            handler: function (request: Request, h: ResponseToolkit) {

                return 'Hello ' + request.auth.credentials.name;
            }
        }
    });

    return server.start();
});
开发者ID:Flarna,项目名称:DefinitelyTyped,代码行数:51,代码来源:route-authentication-server.ts

示例4: async

server.register([Basic, Nes]).then(() => {

    // Set up HTTP Basic authentication

    interface User {
        username: string;
        password: string;
        name: string;
        id: string;
    }

    const users: {[index: string]: User} = {
        john: {
            username: 'john',
            password: '$2a$10$iqJSHD.BGr0E2IxQwYgJmeP3NvhPrXAeLSaGCj6IR/XU5QtjVu5Tm',   // 'secret'
            name: 'John Doe',
            id: '2133d32a'
        }
    };

    const validate: Basic.Validate = async (request, username, password, h) => {

        const user = users[username];
        if (!user) {
            return { credentials: null, isValid: false };
        }

        let isValid = await Bcrypt.compare(password, user.password)

        return { isValid, credentials: { id: user.id, name: user.name, username: user.username } };
    };

    server.auth.strategy('simple', 'basic', { validate });
    server.auth.default('simple')

    // Set up subscription

    server.subscription('/items', {
        filter: (path, message, options) => {

            return message.updater !== options.credentials.username;
        }
    });

    server.start().then(() => {

        server.publish('/items', { id: 5, status: 'complete', updater: 'john' });
        server.publish('/items', { id: 6, status: 'initial', updater: 'steve' });
    });
});
开发者ID:Flarna,项目名称:DefinitelyTyped,代码行数:50,代码来源:subscription-filter-server.ts

示例5:

server.register(Nes).then(() => {

    server.route({
        method: 'GET',
        path: '/h',
        options: {
            id: 'hello',
            handler: (request: Request, h: ResponseToolkit) => {

                return 'world!';
            }
        }
    });

    return server.start();
});
开发者ID:Flarna,项目名称:DefinitelyTyped,代码行数:16,代码来源:route-invocation-server.ts

示例6: Server

(async () => {
  const server = new Server({ debug: false, port: 0 });

  server.register({
    plugin: hapiswagger,
    options: {
      cors: true,
      jsonPath: '/jsonpath',
      info: {
        title: 'a',
        description: 'b',
        termsOfService: 'c',
        contact: {
          name: 'a',
          url: 'localhost',
          email: 'who@where.com'
        }
      },
      tagsGroupFilter: (tag: string) => tag !== 'api'
    }
  });

  server.route({
    method: 'GET',
    path: '/',
    handler: () => 'hi',
    options: {
      auth: false,
      plugins: {
        'hapi-swagger': {
          order: 2,
          deprecated: false,
          'x-api-stuff': 'a'
        }
      }
    }
  });

  await server.start();
  await server.stop();
})();
开发者ID:glennjones,项目名称:hapi-swagger,代码行数:41,代码来源:index.test-d.ts

示例7: Server

// https://github.com/hapijs/hapi/blob/master/API.md#-requestlogtags-data
import { Lifecycle, Request, ResponseToolkit, Server, ServerOptions, ServerRoute } from "@hapi/hapi";

const options: ServerOptions = {
    port: 8000,
};

const handlerFn: Lifecycle.Method = (request, h) => {
    request.log(['test', 'error'], 'Test event');
    return 'path: ' + request.path;
};

const serverRoute: ServerRoute = {
    path: '/',
    method: 'GET',
    handler: handlerFn
};

const server = new Server(options);
server.route(serverRoute);
server.start();
console.log('Server started at: ' + server.info.uri);

server.events.on('request', (request: Request, event: any, tags: any) => {
    console.log(tags);
    if (tags.error) {
        console.log(event);
    }
});
开发者ID:DanielRosenwasser,项目名称:DefinitelyTyped,代码行数:29,代码来源:get-log.ts


注:本文中的@hapi/hapi.Server.start方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。