Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bottlejs-express

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bottlejs-express

Provides functions to help with the integration of Express routes/middlewares and bottlejs services

  • 0.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
56
decreased by-56.59%
Maintainers
1
Weekly downloads
 
Created
Source

bottlejs-express

Provides functions to help with the integration of Express routes/middlewares and bottlejs services.

Useful if you want to integrate the powers of Inversion of Control/Dependency Injection and Express.

Inspired in part by awilix-express.

Table of Contents

Installation

$ npm install bottlejs-express

Usage

Wrapping routes

Pass a class constructor (must be new-able) to makeRouteInvoker along with the services you wish to have "injected" to the class constructor.

This way prevents the container from being polluted with the Route "service".

const {makeRouteInvoker} = require('bottlejs-express');

module.exports = ({bottle, expressApp}) => {
    const routeInvoker = makeRouteInvoker(bottle, PostsRouter, 'dbService', 'otherService');

    expressApp.get('/posts/:postId', routeInvoker('getById'));
    expressApp.post('/posts', routeInvoker('create'));
};

class PostsRouter {
    // Note: using TypeScript, you can do
    //  constructor(private dbService, private otherService) {}
    constructor(dbService, otherService) {
        this.dbService = dbService;
        this.otherService = otherService;
    }

    async getById(req, res, next) {
        const {postId} = req.params;
        
        try {
            await post = await this.dbService.query('SELECT ... WHERE ID ...');
            
            res.status(200).send({
                data: post,
            });
        } catch (ex) {
            res.status(500).send(`An error occured: ${ex.toString()}`);
        }
    }
}
Using a service registered on a Bottle
const {makeRouteInvoker} = require('bottlejs-express');

module.exports = ({bottle, expressApp}) => {
    bottle.factory('PostsRouter', PostsRouter);
    const routeInvoker = makeRouteInvoker(bottle, 'PostsRouter');

    expressApp.get('/posts/:postId', routeInvoker('getById'));
    expressApp.post('/posts', routeInvoker('create'));
};

function PostsRouter({dbService}) {
    const service = {
        getById,
    };

    ////

    async function getById(req, res, next) {
        const {postId} = req.params;
        
        try {
            await post = await dbService.query('SELECT ... WHERE ID ...');
            
            res.status(200).send({
                data: post,
            });
        } catch (ex) {
            res.status(500).send(`An error occured: ${ex.toString()}`);
        }
    }

    ////

    return service;
}
Wrapping middlewares
const {makeMiddlewareInvoker} = require('bottlejs-express');


module.exports = function ({expressApp, bottle}) {
    expressApp.use(makeMiddlewareInvoker(bottle, AuthorizationMiddlewareFactory));
};

function AuthorizationMiddlewareFactory({authService}) {
    return async function AuthorizationMiddleware (req, res, next) {
        try {
            const token = req.header('X-Api-Token');

            if (!authService.verify(token)) {
                return next();
            }

            req.auth.user = await authService.getUsername(token);

            next();
        } catch (ex) {
            console.error('Failed to authenticate request: ', ex);
            next();
        }
    }
}
Wrapping error middlewares
const {makeErrorMiddlewareInvoker} = require('bottlejs-express');


module.exports = function ({expressApp, bottle}) {
    expressApp.use(makeErrorMiddlewareInvoker(bottle, ErrorHandlerMiddlewareFactory));
};

function ErrorHandlerMiddlewareFactory({loggingService}) {
    return async function ErrorHandlerMiddleware (err, req, res, next) {
        loggingService.logError(err);
        
        res.status(500).send('An error occured: ' + err.toString());
    }
}
Strict mode convenience module

A convenience import is available to enable strict mode on bottlejs:

import 'bottlejs-express/strict';
require('bottlejs-express/strict');

License

(The MIT License)

Copyright (c) 2018 elunic <wh@elunic.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 19 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc