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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@neoxr/webly

v0.0.10

Published

A lightweight Express.js backend framework designed to accelerate API development with a modular structure, flexible configuration, and built-in middleware support.

Readme

WEBLY

@neoxr/webly is a backend framework built on top of Express.js, designed to help developers build RESTful APIs quickly, consistently, and with a clean structure.

Webly provides a modular foundation for handling routing, configuration, middleware and logging. With a scalable and extensible architecture, it’s suitable for anything from small projects to enterprise-level systems.

  • ✨ Key Features
  • ⚡ Powered by Express.js — built on a fast, stable, and widely adopted Node.js framework.
  • 🧩 Modular Architecture — clean separation of routes, controllers, and configuration.
  • ⚙️ Flexible Configuration — supports environment-based settings and file-driven configuration.
  • 🧠 Built-in Middleware — includes logging, error handling, CORS, body parsing, and more.
  • 🚀 Production-Ready — optimized for performance and simple deployment.

Get Started

Using @neoxr/webly with Custom Middleware and Dynamic Route Loading Below is an example setup using Webly, App, and Loader from the @neoxr/webly framework.

This demonstrates how to:

  • Initialize the application with a custom name and port
  • Serve static files
  • Automatically load routes and scrapers
  • Apply global middleware
root/
├── index.js
├── routers/
│   ├── index.js
│   └── example.js
├── lib/
│   ├── scraper/
│   │   └── tempo.js
│   └── system/
│       └── middleware.js
└── public/
    ├── 404.html
    └── index.html

Create App

This is an example code for app.js :

import Webly, { App, Loader } from '@neoxr/webly'
import middleware from './lib/system/middleware.js'

// Dynamically load scrapers from the folder
await Loader.scraper('./lib/scraper')

// Initialize the Webly application
const app = new App({
   name: 'Open-API',
   staticPath: ['public'],
   routePath: './routers',
   middleware,
   socket: false,
   socketOpts: {
      transports: ['websocket', 'polling'],
      reconnection: true,
      reconnectionAttempts: 5,
      reconnectionDelay: 1000,
      pingInterval: 25000,
      pingTimeout: 5000
   },
   port: 3000,
   session: {
      name: 'token',
      keys: ['session'],
      maxAge: 72 * 60 * 60 * 1000, // 3 days
      httpOnly: false,
      sameSite: 'strict'
   },
   cors: {
      origin: '*',
      methods: ['GET', 'POST', 'PUT', 'DELETE'],
      allowedHeaders: '*',
      preflightContinue: false,
      optionsSuccessStatus: 204,
      exposedHeaders: '*',
      credentials: true
   },
   error: (req, res) => {
      res.status(404).sendFile('./public/404.html', { root: process.cwd() })
   }
})

// Start the server
app.start()

For a full example project with advanced routing integration: 👉 https://github.com/neoxr/open-api

📦 Ideal For

  • Developers who want a ready-to-use, well-structured Express.js backend starter.
  • Teams looking for a consistent framework across multiple services.
  • Building APIs, internal tools, or microservice backends.