npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

light-middleware

v0.0.11

Published

nodejs lightweight middleware manager for frameworks like express or polka

Downloads

41

Readme

light-middleware NPM version Build Status Code Coverage install size

A very tiny package (zero dependencies) that contains a bunch of most common middlewares, used in many micro-services

Install

$ npm install light-middleware

Usage

  • catchNotFoundError - middleware for throwing 404 error to user
  • enableCors - middleware for enabling CORS requests to micro-service
  • errorHandler - middleware for simple error handling
  • expressBackwardCompatibility - middleware that adds method status and json (if you do not want use express module)
  • logRequest - middleware for simple logging, you can use any logger module with log, error, info, fatal methods
  • setStartRequestTimestamp - middleware that set starting time of request (for calculating duration for example)
  • asyncErrorHandler - wraps async handler and converts it to classic express-handler style
  • logWebSocketRequest - method for simple logging web socket connect/disconnect, you can use any logger, like in logRequest middleware

Example

// use logger module here, for example simple-node-logger
const snl = require("simple-node-logger");
const logger = snl.createSimpleLogger();

// use web framework, express for example
const express = require("express"); 
const app = express();

const MiddlewareManager = require("light-middleware");
const middlewareManager = new MiddlewareManager(logger , true, ["Custom-Cors-Header1", "Custom-Cors-Header2"]);

app.use(middlewareManager.catchNotFoundError);
app.use(middlewareManager.enableCors);
app.use(middlewareManager.errorHandler);
app.use(middlewareManager.expressBackwardCompatibility);
app.use(middlewareManager.compressJson);
app.use(middlewareManager.logRequest);
app.use(middlewareManager.setStartRequestTimestamp);

//use json response compressed by snappy
res.compressJson({result: 1});

const webSocketServer = new WebSocket.Server({noServer: true});
webSocketServer.on("connection", function (ws, req) {
    middlewareManager.logWebSocketRequest(req);
    ws.once("close", function (code, reason) {
        middlewareManager.logWebSocketRequest(req, code, reason);
    });
    
    // handle new client connection
});

// use as a wrapper for middleware handler
const testMiddlewareHandler = async function (req, res, next) {
    if (req.body) {
        next();
    } else {
        next(new Error("body not OK"));
    }
};
app.use(middlewareManager.asyncErrorHandler(testMiddlewareHandler));

// or as a wrapper for endpoint handler
const testEndpointHandler = async function (req, res, next) {
    if (req.body) {
        res.end("body OK");
    } else {
        throw new Error("body not OK");
    }
};
app.post("/test_handler", asyncErrorHandler(testEndpointHandler));