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

blade

v3.29.10

Published

React at the edge.

Downloads

98,006

Readme

Blade

tests

A React framework for building instant web apps.

Features

  • Native Data State Management (built-in React hooks for reads and mutations)
  • Native Pagination (built-in React hooks for paginating lists of records)
  • Native Styling (Support for Tailwind CSS with zero config)
  • Native Markdown (Support for MDX with zero config)
  • Client & Server Components (code is not shipped to the client by default, unless you opt in)
  • Web Standard Compliant (outputs a req/res worker + static files that run anywhere — also runs in containers)
  • No Data Waterfalls (queries are collected across layouts and pages to ensure a single DB transaction)
  • Instant Prod Builds (powered by Rust, using Rolldown)
  • Zero Config (only pages/index.tsx and package.json are needed to get Blade to run)
  • Automatic REST API (Blade auto-generates a REST API at /api for you, for models that you want to expose)
  • Zero Config Deployments (Vercel, Cloudflare, containers, and more)

Considerations

Blade purposefully does not (and likely won't ever) comply with the official specification for React Server Components, because it provides different solutions to the problems that RSC aims to solve.

  • No Server Functions (instead of executing arbitrary code, the only way to invoke the server in Blade is through a mutation)
  • No Async Components (I/O leads to slow code, so reads in Blade are always synchronous, but async behind the scenes)
  • No Suspense (Blade does not support reads on the client — server components can only read and client components can only write)

Setup

To get started with Blade, create a new app with this command:

npm create blade

Afterward, enter the newly created directory and install the dependencies:

cd blade-example
npm install

Lastly, start the development server:

npm run dev

Deploying

In order to deploy your Blade app to production, use your deployment provider of choice. For example, you can sign up to Vercel and run this command in the directory of your Blade app to deploy it:

vercel -y

That's all. The command will create the Vercel project and deploy the app for you.

API

Check out the documentation for more details.

Contributing

To start contributing code, clone the repo and install its dependencies:

bun install

Once that's done, link the package to make it available to all of your local projects, by running the following command in the packages/blade directory:

bun link

Inside your project, you can then run the following command, which is similar to bun add blade or npm install blade, except that it doesn't install blade from npm, but instead uses your local clone of the package:

bun link blade

If your project is not yet compatible with Bun, feel free to replace all of the occurrences of the word bun in the commands above with npm instead.

You will just need to make sure that, once you create a pull request on the current repo, it will not contain a package-lock.json file, which is usually generated by npm. Instead, we're using the bun.lockb file for this purpose (locking sub dependencies to a certain version).

Running Tests

Before you create a pull request on the blade repo, it is advised to run its tests in order to ensure everything works as expected:

# Run all tests
bun run test

# Alternatively, run a single test
bun run test -- -t 'your test name'