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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@letumfalx/expressance

v0.1.0

Published

A very simple framework that extends expressJS and is using instance-based route.

Downloads

3

Readme

Expressance

A very simple framework that extends expressJS and is using instance-based route.

Installation

For npm:

npm install @letumfalx/expressance

For yarn:

yarn add @letumfalx/expressance

API

Kernel

  • app: Express - The express instance.

  • server: Server - The http server for the Kernel.

  • addMiddleware (middleware: RequestHandler): this - Add an express middleware as a global middleware.

  • addRoute (route: Route): this - Add a route.

  • cookieParser (secret: String|String[], options?: CokkieParseOptions): this - Add the cookie-parser as a global middleware.

  • cors (options?: CorsOptions): this - Add the cors middleware as a global middleware.

  • json (options: OptionsJson): this - Add the json request body parser middleware as a global middleware.

  • raw (options: OptionsRaw): this - Add the raw request body parser middleware as a global middleware.

  • start (...args): Server - Starts the server. This will just pass the given arguments to the underlying server's listen method.

  • text (options: OptionsText): this - Add the text requet body parser middleware as a global middleware.

  • trimRequest (type: 'all'|'body'|'param'|'query'): this - Add the trim-request middleware as a global middleware.

  • urlencoded (options: OptionsUrlencoded): this - Add the urlencoded request body parser as a global middleware.

Route

  • method (): 'get'|'post'|'put'|'patch'|'delete' - Required. Should return the method to be used by the route.

  • middlewares (): RequestHandler[] - Optional. Should return the list of middleware to be bound to the route.

  • path (): String - Required. Should return the path where this route will be bound.

  • handle: RequestHandler - Required. The main handler for the incoming request.

  • static create (modifier: (route: Route) => void): Route - Create a new generic route that will be modified by the given modifier callback.

Usage

Route

Creating a Route Class

const Route = require('@letumfalx/expressance/Route');
const validateId = require('./middlewares/validateId');

class UserRoute extends Route {
  method () {
    return 'get';
  }

  middlewares () {
    return [
      validateId
    ];
  }

  path () {
    return '/user-b';
  }

  async handle (req, res) {
    return res.status(200).json({ id: req.query.id, name: 'User B' });
  }
}

Using Route.create

const Route = require('@letumfalx/expressance/Route');
const validateId = require('./middlewares/validateId');

const UserRoute = Route.create(route => {
  route.path = () => '/user-a';
  route.method = () => 'get';
  route.middlewares = () => [ validateId ];
  route.handle = async (req, res) => res.status(200).json({ id: req.query.id, name: 'Admin' });
});

Kernel

const Kernel = require('@letumfalx/expressance/Kernel');
const Route = require('@letumfalx/expressance/Route');
const convertToNumber = require('./middlewares/convertToNumber');
const validateId = require('./middlewares/validateId');
const UserRoute = require('./UserRoute');

new Kernel()
  // add the global middlewares
  .cookieParser()
  .cors()
  .json()
  .raw()
  .text()
  .trimRequest()
  .urlencoded()
  .addMiddleware(convertToNumber)
  // add the routes
  // using Route.create
  .addRoute(Route.create(route => {
    route.path = () => '/user-a';
    route.method = () => 'get';
    route.middlewares = () => [ validateId ];
    route.handle = async (req, res) => res.status(200).json({ id: req.query.id, name: 'Admin' });
  }))
  // using class
  .addRoute(new UserRoute())
  .start(12205, () => console.log('Server is running!'));

License

MIT