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 🙏

© 2025 – Pkg Stats / Ryan Hefner

coderoad-cli

v0.10.0

Published

Command line interface for CodeRoad. Build project files.

Downloads

87

Readme

CodeRoad CLI

Command line interface for CodeRoad. See the docs for more.

Install

Use CodeRoad CLI to setup and build a project data file.

Install CodeRoad-CLI. Make sure NodeJS is already installed

> npm install -g coderoad-cli

Create

Get setup quickly with CodeRoad: either clone a tutorial repo or use the CodeRoad-CLI.

In your development directory, run create with your new package name.

> coderoad create $YOUR-PACKAGE-NAME$

Running create generates:

  • an example tutorial.md, which imports several tutorial files
  • an example test directory with a few example tests
  • a package.json configuration with some of the following settings:
{
  "name": "coderoad-$TUTORIAL-NAME$",
  "version": "0.1.0",
  "description": "Coderoad tutorial",
  "author": "Name <email> (site)",
  "main": "coderoad.json",
  "keywords": ["coderoad", "tutorial"],
  "dependencies": {
      "mocha-coderoad": "0.10.0"
  },
  "config": {
      "language": "JS",
      "dir": "tutorial",
      "runner": "mocha-coderoad",
      "testSuffix": ".js"
  }
}

We'll learn more about these configurations when it's time to publish.

Update changes to your tutorial by running build. This will generate a coderoad.json data file used by atom-coderoad.

> coderoad build

Validate

Validate your package.json & coderoad.json for possible errors or flagged warnings.

> coderoad validate

Demo Your Tutorial

Open a new directory for demoing your tutorial. Setup a new NPM project file.

> npm init

Add your package name to the dependencies in package.json:

{
  "dependencies": {
      "coderoad-$YOUR-PACKAGE-NAME$": "^0.1.0"
  }
}

Normally you would use npm install to install the package, but your package isn't ready to be published yet. Instead, you need to link your tutorial package to your demo directory.

Link Your Demo & Tutorial

NPM link creates a symbolic link between directories. This allows your demo directory to always load your tutorial package.

Inside of your tutorial root directory, run link.

> npm link

Inside of your demo root directory, connect the link.

> npm link coderoad-$YOUR-PACKAGE-NAME$
> npm install

Using Atom

Open Atom-Coderoad to view your tutorial. Your package should appear as a loaded package. Click on it.

Reload Atom to view changes. You can use the Atom command-palette to find "reload" or simply use the reload hot-key.

  • Windows & Linux: alt-ctrl-r
  • Mac: ctrl-alt-cmd-l