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

noti-cli

v0.1.0

Published

Run `ng serve` but hook into its output to show toast notifications for events

Downloads

4

Readme

CLI notifier

Small project that wraps around CLI commands to capture their output and when encountering certain situations show a notification about the event.

Started as a project specific to angular-cli, but evolved quite a bit since then. Out-of-the-box support for ember-cli and create-react-app is coming soon.

Installation

For now:

  • clone the project
  • run yarn install (or npm install if you really have to :laughing:)
  • run tsc && npm install -g && npm link

Usage

Run noti-cli <cli params for the cli command defined in your noti-cli.config file> in your working project folder.

When you have multiple configurations in your directory tree, set the first parameter of noti-cli to cli:cli_name to load noti-cli.cli_name.json as a configuration file (e.g. noti-cli cli:ng ... will load the configuration from noti-cli.ng.json either from your current working directory tree, or as a last try, from the noti-cli directory).

noti-cli will automatically run the cli command defined in the configuration file and pass onto it all the parameters you supplied noti-cli except for the cli:... parameter, if present.