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

canright-cli

v0.4.0

Published

Minimalist CLI for web server

Downloads

13

Readme

CLI for a Web Server

A baseline CLI for a web server.

This is a minimalist, baseline CLI ready to be filled in as required. It is intended as a wrapper for the implementation of a CLI application.

At runtime, it works like this:

Activate the CLI from your node application console by pressing the enter key.

At startup, CLI issues this hint to the console:

CLI is off.  Enter to turn it on.

Upon entering an empty line, CLI puts this to the console:

- Logging to the console is paused.
- Incoming event logs are queued.
- The CLI is active. Try "help".

Enter 'help' to see this:

CLI Commands:

> now     -- echo current date and time.
> hey     -- random heys.

> <enter> -- toggle log flow to console - pause or resume flow.
> help    -- this help.
> info    -- system information.
> exit    -- flush logs and stop the server.

> _

Notes:

The main server module demonstrates usage. It is a minimum express web server that:

  1. requires the CLI module.
  2. streams the logger (morgan) to cli.log rather than directly to the console.

The CLI module buffers, queues and allows you to manage the flow of event logs while the CLI is active.

The CLI facilitates management of the flow of logged events to the console. It offers a minimal interface that enables the user to easily pause and resume that flow. The CLI looks for and executes its base commands ('help', 'info' 'exit', '') and passes the rest on to applicatin command processor - the exe function in the commands sub-module.

The commands sub-module (lib/commands.ts/js) is a stub in which to add application specific CLI commands. For demonstration purposes, commands implements two trivial commands, 'now' and 'hey'.

The CLI interprets a line of text from the console as a space-delimited list to yield an array of command arguments. It passes that array of command arguments to the exe function in the commands sub-module.

Features

  • No external dependencies (only uses node and express).
  • Stack: Node 4 & 5, Javascript ES6/2015, Typescript, express.
  • Demonstrates simple CLI integrated with web server.
  • Demonstrates minimalist node/express web server.

Modules:

  • server - a minimal express web server.
  • lib/cli - the CLI framework module.
  • lib/commands - stub for non-framework CLI command processors.