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

@iopress/core

v1.0.4

Published

Ultra-fast HTTP framework powered by io_uring and C native addons. 30x faster than Express.

Downloads

517

Readme

Iopress Logo

High-performance, unopinionated, minimalist native HTTP engine for Node.js.

This project has a Code of Conduct.

Table of contents

NPM Version NPM Downloads CI Build License

const iopress = require('@iopress/core')
const app = iopress()

app.get('/', (req, res) => {
  res.send('Hello World')
})

app.listen(3000, () => {
  console.log('Server is running on http://localhost:3000')
})

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 18 or higher is required.

Installation is done using the npm install command:

npm install @iopress/core

Note: On Linux, liburing-dev is recommended for optimal performance via io_uring.

Features

  • Native Performance: Built on platform-specific async I/O (io_uring, kqueue, IOCP).
  • Fast Path Routing: Static routes are handled entirely in C without crossing into JavaScript.
  • Express Compatible: Familiar API for seamless migration.
  • Zero Dependency: Minimal runtime footprint with focused native core.
  • Built-in Body Parsing: High-performance JSON and raw body parsing included.
  • Scalability: Designed to handle 500k+ requests per second on a single instance.

Docs & Community

Quick Start

The quickest way to get started is to create a simple script:

  1. Create a directory: mkdir my-app && cd my-app
  2. Initialize: npm init -y
  3. Install: npm install @iopress/core
  4. Create app.js and paste the snippet above.
  5. Run: node app.js

Philosophy

The iopress philosophy is to deliver native performance to the Node.js ecosystem without sacrificing the minimalist developer experience pioneered by Express.

While Express relies on the generic libuv event loop, iopress utilizes the latest kernel-level asynchronous interfaces directly. This allows iopress to bypass traditional bottlenecks, making it the ideal engine for high-throughput APIs, proxy layers, and performance-critical services.

Performance (Why iopress?)

iopress is designed to outperform traditional Node.js frameworks by leveraging direct kernel communication and a "fast-path" routing system.

| Framework | Platform | Throughput (req/s) | Latency (p99) | |-----------|----------|-------------------|---------------| | iopress | Linux (io_uring) | 500,000+ | <1ms | | iopress | macOS (kqueue) | 218,572 | <1ms | | iopress | Windows (IOCP) | 100,000+ | <5ms | | Express.js | Any | ~17,000 | ~20ms |

Benchmarks performed on Apple M2 (macOS) and Ubuntu 22.04 (Linux).

Examples

To view the examples, clone the repository:

git clone https://github.com/senapati484/iopress.git --depth 1 && cd iopress

Then install the dependencies and run an example:

npm install
node examples/basic.js

Contributing

The iopress project welcomes all constructive contributions. See the Contributing Guide for more technical details.

Security Issues

If you discover a security vulnerability, please see our Security Policy.

Running Tests

npm install
npm test

License

ISC License

Copyright (c) 2024 senapati484

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.


Made with performance in mind. If you find @iopress/core useful, please consider starring the repository on GitHub!