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
Using a class constructor (recommended)
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 = ; module { const routeInvoker = ; expressApp; expressApp;}; // Note: using TypeScript, you can do // constructor(private dbService, private otherService) {} { thisdbService = dbService; thisotherService = otherService; } async { const postId = reqparams; try await post = await thisdbService; resstatus200; catch ex resstatus500; }
Bottle
Using a service registered on a const makeRouteInvoker = ; module { bottle; const routeInvoker = ; expressApp; expressApp;}; { const service = getById ; //// { const postId = reqparams; try await post = await dbService; resstatus200; catch ex resstatus500; } //// return service;}
Wrapping middlewares
const makeMiddlewareInvoker = ; module { expressApp;}; { return { try const token = req; if !authService return ; reqauthuser = await authService; ; catch ex console; ; }}
Wrapping error middlewares
const makeErrorMiddlewareInvoker = ; module { expressApp;}; { return { loggingService; resstatus500; }}
Strict mode convenience module
A convenience import is available to enable strict mode on bottlejs
:
;
;
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.