Socket
Book a DemoInstallSign in
Socket

nut-ioc-express

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nut-ioc-express

Express Framework is used to host endpoint in OpenAPI or Swagger document.

1.2.0
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
2
Weekly downloads
 
Created
Source

nut-ioc-express

nut-ioc-express uses Express Framework to host endpoints in OpenAPI or Swagger document.

nut-ioc-express is used by nut-ioc npm package.

Environment Variables with default values

Environment Variables with default values

  • HOST=0.0.0.0
  • PORT=3000
  • APP_LOGGER=consoleLogger
  • CORS_ORIGINS=*
  • REQUEST_BUILDER=swaggerV3RequestBuilder
  • OPEN_API_UI_BASE_PATH=/api-docs
  • REQUEST_BODY_SIZE=100kb
  • HTTP_ENABLED=true
  • HTTPS_ENABLED=false
  • HTTPS_PORT=443
  • HTTPS_KEY_FILE=key.pem
  • HTTPS_CERT_FILE=cert.pem
  • HELMET_OPTIONS_FILE=

Helmet Options

To enable helmet, helmet options json file path must be set as HELMET_OPTIONS_FILE environment variable.
For Example: 
    HELMET_OPTIONS_FILE=./src/configs/helmetOptions.json    

Example

Auth0 usage is in the following example, notice that expressRouteMiddleware.use is called for every route invocation so that we can add new middleware for some paths.

require('dotenv').config();

const jwt = require('express-jwt');

const jwksRsa = require('jwks-rsa');

const { getNutIocContainer } = require('./nut-ioc-container-configurations');

const nutIocContainer = getNutIocContainer();

const { AUTHO_DOMAIN, AUTHO_AUDIENCE } = process.env;

const checkJwt = jwt({
    secret: jwksRsa.expressJwtSecret({
        cache: true,
        rateLimit: true,
        jwksRequestsPerMinute: 5,
        jwksUri: `${AUTHO_DOMAIN}.well-known/jwks.json`
    }),

    // Validate the audience and the issuer.
    audience: AUTHO_AUDIENCE,
    issuer: AUTHO_DOMAIN,
    algorithms: ['RS256']
});

const mainAsync = async () => {
    const { expressServer } = await nutIocContainer.build();

    const { expressRouteMiddleware } = await expressServer.configProvider;

    expressRouteMiddleware.use((req, res, next) => {

        res.set('Cache-Control', 'no-store, max-age=0');

        const { security } = req.swaggerPathDefinition;

        if (security && security.length > 0) {
            checkJwt(req, res, next);
        }
    });

    await expressServer.start({});
};

mainAsync();

Keywords

express

FAQs

Package last updated on 03 Feb 2022

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.