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

@choo-js/choo

v0.3.0

Published

A multilingual full-stack web application toolkit, inspired by Ruby on Rails.

Readme

Choo.js

A multilingual full-stack web application toolkit, inspired by Ruby on Rails.

About

I have been looking for a long time for an alternative to Ruby on Rails, since I don't enjoy coding in Ruby and Rails is also very slow. I want to create an extremely fast web application framework like Ruby on Rails that makes it very easy to migrate to, from Rails. This is where Choo.js comes in. It allows you to use your favorite backend language, whether it be TypeScript, Rust, Go, or even plain JavaScript, as well as bringing your own frontend framework, or even just using plain templates.

Features

  • [x] 100% written in TypeScript.
  • [x] A blazingly fast server framework based on Fastify. (See @choo-js/coal)
  • [x] Database support with TypeORM.
  • [x] Request logging. (See @choo-js/logger and logger.ts)
  • [x] Route parameter support.
  • [x] Query parsing.
  • [x] Body parsing.
  • [x] Full controller support for requests and middleware.
  • [ ] An easy CLI to manage your app. (See @choo-js/cli)
  • [ ] A custom ERB-like templating language. (See @choo-js/templates)
  • [ ] Static asset handling.
  • [ ] Asset bundling. (See @choo-js/bundler)
  • [ ] Production build optimization and minification.
  • [ ] Standalone production build binary generator.
  • [x] Secure authentication API. (See @choo-js/ticketing)
  • [x] REST API creation support.
  • [ ] Support for TypeScript-based backends.
  • [ ] Frontend builds with ESBuild and a custom build API.
  • [ ] Support for frontends with Svelte, React, Preact, Vue, and templating languages. (See @choo-js/frontend)
  • [ ] Support for Rust-based backends (native node modules).
  • [ ] Support for Go-based backends (native node modules).

Project Directories

The directory structure of any Choo.js project is as follows:

  • api/ => The API and main code for the backend.
  • app/ => The frontend application code, if you choose to use a framework.
  • auth/ => The authentication code and config, allows you to use our in-house auth suite or bring your own.
  • config/ => The general app config. This allows you to configure your app as you choose.
  • controllers/ => The controllers to configure routes throughout your app.
  • layouts/ => The templates for layouts in the app.
  • migrations/ => SQL (or other) scripts to run for database migrations. Only run if the tables do not exist.
  • models/ => SQL (or other) models for entities and tables. Supports relations.
  • seeds/ => Database default data (seeds). Run after migrations.
  • scripts/ => Utility scripts you can run during development.
  • static/ => Static assets for your app to use.
  • views/ => Views to render in your app.

Showcase

Feature Showcase

Contributing

This project is under the MIT license, and we are always looking for collaborators! Please open a PR or an issue if you see something you want added.

More: See CONTRIBUTING.md