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

shelldoc

v1.0.0

Published

A node repl module that provides user-friendly in-repl documentation.

Readme

node-help

node-help is a node module that integrates the standard node REPL with documentation and colors. Our sources currently include the Mozilla Developer Network JavaScript language references for ECMAScript5 and part of the Node api docs for your node version.

Assuming you have Node.js and npm installed on your machine, to install node-help, run the following commands:

  • npm install -g node-help
  • in your terminal type node-help to start the repl
  • Once in the node-help repl, use the help() or i() functions to get help on something you want to know more about.

>> var a =  9.0
>> i(a) 
name: 9.0
type: Number
node module: false
description: 
The Number JavaScript object is a wrapper object allowing you to work with numerical
values. A Number object is created using the Number() constructor.
>> docs('Array') 
name: Array
node module: false
type: function

description: 
  Arrays are list-like objects whose prototype has methods to perform  
  traversal and mutation operations. Neither the length of a JavaScript array  
  nor the types of its elements are fixed. Since an array's size length grow  
  or shrink at any time, JavaScript arrays are not guaranteed to be dense. In  
  general, these are convenient characteristics; but if these features are not  
  desirable for your particular use, you might consider using typed arrays.   
  Some people think that you shouldn't use an array as an associative array.  
  In any case, you can use plain objects instead, although doing so comes with  
  its own caveats. See the post Lightweight JavaScript dictionaries with  
  arbitrary keys as an example.  

isNative :  no
methods
   from
   isArray
   observe
   of
   copyWithinkk
   ...
````
````````bash
var WS = require('stream').Writeable;
>> i(new WS()); 
name: WS
type: Stream
node module: TRUE
description: The Writable stream interface is an abstraction for a destination that you are writing data to. Examples of writable streams include:

http requests, on the client
http responses, on the server
fs write streams
zlib streams
crypto streams
tcp sockets
child process stdin
process.stdout, process.stderr

````