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

honestjs

v0.1.6

Published

HonestJS - a modern web framework built on top of Hono

Readme

🚨 Early Development Warning 🚨

Honest is currently in early development (pre-v1.0.0). Please be aware that:

  • The API is not stable and may change frequently
  • Breaking changes can occur between minor versions
  • Some features might be incomplete or missing
  • Documentation may not always be up to date

We recommend not using it in production until v1.0.0 is released.

⚠️ Documentation is not yet complete ⚠️

If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.

Features

  • 🚀 High Performance - Built on top of the ultra-fast Hono framework
  • 📦 Modular Architecture - Organize your code into reusable, feature-focused modules
  • 💉 Dependency Injection - Built-in DI container for better code organization and testing
  • 🔌 Plugin System - Extend functionality through a flexible plugin system
  • 🛣️ Advanced Routing - Support for versioning, prefixes, and nested routes
  • 🔒 Built-in Security - Guards, middleware, and error handling out of the box
  • 🔄 Request Pipeline - Powerful middleware, guards, pipes, and filters
  • 📝 TypeScript-First - Built with TypeScript for excellent type safety and IDE support

Quick Start

Using Honest CLI

The fastest way to create a new Honest application is to use the Honest CLI:

# Install Honest CLI globally
bun add -g @honestjs/cli

# Create a new project
honestjs new my-project # alias: honest, hnjs
cd my-project

# Start the development server
bun dev

This will create a new project with a standard directory structure and all necessary configuration files.

Manual Setup

If you prefer to set up your project manually, follow these steps:

  1. Install packages
bun add honestjs hono reflect-metadata
# or
pnpm add honestjs hono reflect-metadata
# or
yarn add honestjs hono reflect-metadata
# or
npm install honestjs hono reflect-metadata
  1. Create your first controller:
// app.controller.ts
import { Controller, Get } from 'honestjs'

@Controller()
class AppController {
	@Get()
	helloWorld() {
		return 'Hello, World!'
	}
}

export default AppController
  1. Create a module:
// app.module.ts
import { Module } from 'honestjs'
import { AppController } from './app.controller.ts'

@Module({
	controllers: [AppController]
})
class AppModule {}

export default AppModule
  1. Bootstrap your application:
import 'reflect-metadata'
import { Application } from 'honestjs'
import { AppModule } from './app.module'

const { app, hono } = await Application.create(AppModule, {
	routing: {
		prefix: 'api',
		version: 1
	}
})

export default hono

License

MIT © Orkhan Karimov