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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hypersprite/hs-utils

v2.0.0

Published

Variouse utils for dealing with npm packaging

Downloads

29

Readme

hs-utils

Some utilities for managing npm packages.

For best results use npm 5.2 or later.

Usage

Install

This should be a dev dependency

npm i -D --save @hypersprite/hs-utils

Setup

Optional setup needed for --projects commands.

Add a section for hsUtils to the package.json file that contains.

projectDirs is an array of related project directories you want to work with.

compareTo is a usually a main or master project directory, will use installed directory if none is defined.

These are based on the location of the package.json file.

Example folder structure:

~/all-code $  tree -L 2
.
├── modules-code
│   ├── this-project
│   ├── project-one
│   └── project-two
├── main-project
└── project-three

The hsUtils of this-project package.json might look like this:


"hsUtils": {
  "projectDirs": [
    "project-one",
    "project-two",
    "../project-three"
  ],
  "compareTo": "../main-project"
},

Usage

Runs npm install on each projectDirs project

npx hs-utils --projects install

Remove node_modules folders from each projectDirs project.

npx hs-utils --projects clean

Compares Prod and Dev dependencies based on the package.json file for each projectDir project to the compareTo project. The output will show you what is missing or different version than the compareTo.

npx hs-utils --projects compare

Runs npm outdated on each projectDirs project. Same as running npm outdated in the projects directory.

npx hs-utils --projects outdated

Validate package.json file for basic things.

npx hs-utils --package validate

find/replace text in the package.json file

npx hs-utils --pacakge rename --old component-starter --new cool-component

All commands can take a --debug flag for extra output, prefixed with hsUtils.

If npm 5.2 is not available, commands could be placed in the scripts section of the package.json file but this is less convenient.