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

@qoi/cli

v0.2.3

Published

qoi ------------ Lightweight tooling for your javascript and typescript

Readme

qoi

Lightweight tooling for your javascript and typescript

Requirements

  • Node 16.x
  • Git Bash Terminal or any Bash terminal

Installation

npm install --save-dev @qoi/{cli,build,test}

CLI Options

Qoi

TypeScript and ES module execution engine

Usage:
  $ qoi [file]

Options:
  -h, --help     Display this message
  -v, --version  Display version number

Build

Command Line Bundler or packager for typescript and javascript

  Usage:
  $ qoi build [dir]

  Options:
  -c, --config <file>    [string] use specified config file
  -f, --format <format>  [string] Specifies the format of the generated bundle (default: 'es')
  --preset <preset>      [preset] base configuration for your application
  --outDir <outDir>      [string] output directory (default: dist)
  --external <external>  [string] Specify external dependencies
  --resolve <resolve>    [boolean] resolve external dependencies
  --module               [boolean] module should be has extension of (.mjs)
  --minify               [boolean] enable/disable minification(default: false)
  --sourcemap            [boolean] output source maps for build (default: false)
  --emptyOutDir          [boolean] force empty outDir when it's outside of root
  --dts                  [boolean] Generates corresponding .d.ts file  (default: false)
  --link                 [boolean] symlink your outDir as npm package (default: false)
  -h, --help             Display this message
  -v, --version          Display version number

Test

Command Line testing tool for nodejs and browser base

Usage:
  $ qoi test [...file]

Options:
  -t, --timeout <timeout>  [number] Specify test timeout threshold (in milliseconds) [default: 2000]
  --threshold <threshold>  [string] Enable the thresholds
  --include-dir            [string] Directory folder source (default: src)
  --check-coverage         Enable coverage  (default false)
  -h, --help               Display this message
  -v, --version            Display version number

Versions

| Package | Description | version | | ------------------- | ------ | ------ | @qoi/cli | Command line | 0.2.2 | @qoi/build | Bundler or packager for typescript and javascript | 0.2.2 | @qoi/fs | Async Nodejs FileSystem | 0.2.1 | @qoi/register | Transpile your esm javascript and typescript on the fly | 0.2.2 | @qoi/test | Testing tool for nodejs and browser base | 0.1.0 | @qoi/types | all types of qoi | 0.0.8

Common issues

  • When using Powershell add git bash PATH in your System environment variables
  • If you encounter error when using windows, you should open powershell or git bash terminal as Administrator
    [Error: EPERM: operation not permitted, symlink <source file> -> <destination file>
  • swc paths doesnt work with symlink
  • resolving @rollup/plugin-commonjs will cause circular dependency with glob package
    /// Circular dependency: node_modules/glob/glob.js -> node_modules/glob/sync.js -> node_modules/glob/glob.js
    https://github.com/isaacs/node-glob/issues/365
  • when using Windows OS and will support tsconfig paths, you need to install 2 npm packages
    • npm i typescript-paths rollup-plugin-tsconfig-paths --save-dev or yarn add typescript-paths rollup-plugin-tsconfig-paths --dev