scooter

API v7.0.x

Installation:

npm: npm install @hapi/scooter

yarn: yarn add @hapi/scooter

Scooter uses the [useragent] package to provide user-agent information. For more details of what information scooter provides, please see the useragent.

Usage

const Hapi = require('@hapi/hapi');
const Scooter = require('@hapi/scooter');

const start = async () => {

    const server = new Hapi.Server();

    server.route({
        method: 'GET',
        path: '/user-agent',
        handler: (request, h) => {

            return request.plugins.scooter;
        }
    });

    await server.register(Scooter);
    await server.start();
    console.log(server.info.uri + '/user-agent');
};

start();
clipboard