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/cli

v0.1.1

Published

CLI tool for scaffolding honestjs projects

Readme

@honestjs/cli

The official command-line interface for scaffolding and managing HonestJS projects.

Installation

To install the CLI globally, run:

npm install -g @honestjs/cli

Usage

The HonestJS CLI provides several commands to help you get started with your project.

new

The new command creates a new HonestJS project with a default structure and configuration.

honestjs new <project-name> [options]

honest new <project-name> [options]

hnjs new <project-name> [options]

Arguments

  • <project-name>: The name of the project to create.

Options

  • -t, --template <template>: Specify the template to use (e.g., barebone, blank, mvc).
  • -p, --package-manager <manager>: Choose a package manager (e.g., bun, npm, yarn, pnpm).
  • --typescript: Use TypeScript in the project.
  • --no-typescript: Do not use TypeScript in the project.
  • --eslint: Add ESLint for code linting.
  • --no-eslint: Do not add ESLint.
  • --prettier: Add Prettier for code formatting.
  • --no-prettier: Do not add Prettier.
  • --docker: Add Docker configuration.
  • --no-docker: Do not add Docker configuration.
  • --git: Initialize a Git repository.
  • --no-git: Do not initialize a Git repository.
  • --install: Install dependencies after creating the project.
  • --no-install: Do not install dependencies.
  • -y, --yes: Skip all prompts and use default settings.

list

The list command displays all available templates that can be used to create a new project.

honestjs list [options]

Options

  • -j, --json: Output the list of templates in JSON format.
  • -c, --category <category>: Filter templates by category.
  • -t, --tag <tag>: Filter templates by tag.

info

The info command shows information about the CLI, templates, and your environment.

honestjs info

generate

The generate command (aliased as g) creates new files based on a schematic.

honestjs generate <schematic> <name> [options]

Arguments

  • <schematic>: The type of file to generate (e.g., controller, service, module).
  • <name>: The name of the generated item.

Options

  • -p, --path <path>: Specify the path where the file should be created.
  • -f, --flat: Create the file in a flat structure (without a dedicated folder).
  • --skip-import: Do not import the generated item into other files.
  • --export: Export the generated item.

Available Schematics

  • controller (or c): Generates a new controller.
  • service (or s): Generates a new service.
  • module (or m): Generates a new module.
  • view (or v): Generates a new view.
  • middleware (or c-m): Generates a new middleware.
  • guard (or c-g): Generates a new guard.
  • filter (or c-f): Generates a new filter.
  • pipe (or c-p): Generates a new pipe.

License

This project is licensed under the MIT License.