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

sp25-jereblac-cli

v1.0.0

Published

This is a basic CLI tool for IU Indianapolis' course N320.

Readme

CLI Tool

About

This module includes a Command Line Interface tool that creates a project file for you after you input a project name.

How to set up

After installing node with npm init, you can install this module with npm install sp25-jerblac-cli. This tool is ran in the terminal and requires no extra set up.

How to run

This tool can be ran using the index npm script in Visual Studio Code OR typing node index.js in the terminal in the project directory. The terminal will prompt you for a project name- once you finish typing and press the enter key, a new file will be created in an output folder in the directory.

Week recap

In N320 this week, we got deeper insight into Node basics from publically publishing/updating modules to OOP practices uing Node.js.

Node Modules

Node offers many built-in and user made modules developers can install and use at anytime. Some important built-in modules are path, fs, and readline.

  • Path: Dynamically pulls file paths across directories.
  • fs: Allows devs to work with/edit files dynamically in a different file within a directory.
  • readline: Prompts users to input information in the terminal.

All of these modules can be used to create a Command Line Interface (CLI), a tool that allows users/devs the ability to use the terminal to create or edit information without creating it themselves.

OOP principles

Object-Oriented program is HUGE across all programming languages, and learning how to utilize it in Node can help your project be optimized and organized. OOP relies on classes in JS which holds information that can be abstracted, edited, and/or inherited by another class. OOP classes can help ensure information isn't accidentally changed by having private variables, functions only get the information they need and aren't reading heaps of code just for 1-2 variables, and variables meant to be accessed widely can with a simple keyword (static/super).