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

@ruyadorno/redact

v1.0.0

Published

Small cli util that redacts path refs from stdin

Downloads

5

Readme

redact

npm version License GitHub Actions

Small cli util that redacts path refs from stdin.

It will also clean up:

  • References to node executable path will be replaced with node
  • Any $HOME env variable will be replaced with a literal string
  • Normalize paths (windows \\ will be replaced with /)

It can also be used with positional arguments to customize what word should be redact and what should be the replacement text by default.

Usage

You may install this package in the global system space and pipe any output into redact for cleaned up output:

$ npm install -g @ruyadorno/redact
$ my_cmd | redact

OR alternatively, install+run on demand using npm exec:

$ my_cmd | npm exec @ruyadorno/redact

Customizing

You may also customize what word to be redacted and define a new replacement by providing additional positional arguments to redact, e.g:

$ my_cmd
Foo bar baz
$ my_cmd | redact bar REDACTED
Foo REDACTED baz

Note: this might or might not be simpler than trying to remember sed's syntax

Example

Cleaning up your system path from npm logs so that you can better share them with the world:

$ npm i 2>&1 --loglevel=verbose | redact

npm verb cli [
npm verb cli   'node',
npm verb cli   '<path>/main',
npm verb cli   'i',
npm verb cli   '--loglevel=verbose'
npm verb cli ]
npm info using [email protected]
npm info using [email protected]
...
npm timing command:install Completed in 0ms
npm verb stack TypeError: Cannot read property 'bar' of undefined
npm verb stack     at Install.install (<path>/main/lib/install.js:113:40)
npm verb stack     at Install.exec (<path>/main/lib/install.js:108:10)
npm verb stack     at Object.[_runCmd] (<path>/main/lib/npm.js:116:12)
npm verb stack     at <path>/main/lib/npm.js:28:35
npm verb stack     at Object.<anonymous> (<path>/main/lib/cli.js:61:7)
npm verb cwd <path>/main
npm verb Darwin 19.6.0
npm verb argv "node" "<path>/main" "i" "--loglevel=verbose"
npm verb node v16.0.0
npm verb npm  v7.10.0
npm ERR! Cannot read property 'bar' of undefined
npm verb exit 1
npm timing npm Completed in 198ms
npm verb code 1

npm ERR! A complete log of this run can be found in:
npm ERR!     $HOME/.npm/_logs/2021-04-20T20_06_13_794Z-debug.log

License

MIT