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

overviewer

v0.2.0

Published

View the output of multiple programs at the same time

Downloads

4

Readme

Overviewer

overviewer lets you view the output of multiple programs at the same time. It also shows if a program failed or succeeded by using an appropriately colored border.

Screenshot

Motivation

Here are some reasons why I made this project.

  • I wanted to use blessed (and more specifically react-blessed)
  • I wanted to use redux (and to see how it compares to Alt)
  • I can't remember the name of many useful tools but I still want to use them…

…instead of having to remember the names of all those tools I just add them once to my .overviewerrc and then run overviewer occasionally to benefit from those tools.

Installation

Global:

npm install -g overviewer

Local:

npm install --save-dev overviewer

This is the preferred way if you want integrate overviewer into your project's development workflow because it will be installed automatically for others who work on your project.

Usage

Use overviewer to start it when you installed it globally and ./node_modules/.bin/overviewer when you installed it locally (or simply overviewer when used as npm script).

Keybinding | Action ------------------ | ------------- q, Escape, Ctrl-c | Quit Tab | Focus next output Shift-Tab | Focus previous output Up | Scroll up Down | Scroll down

overviewer doesn't have any command line flags or helpful messages as of now.

You must have a .overviewerrc file in the working directory. See below.

Configuration

To specify which programs should be run by overviewer a .overviewerrc file has to be created.

Example:

{
  "reporters": [
    {
      "title": "Linting",
      "command": "node_modules/.bin/eslint src --color",
    },

    {
      "title": "Babel Doctor",
      "command": "node_modules/.bin/babel-doctor --colors",
      "failure": "Found potential issues on your machine",
    },

    {
      "title": "Dependency Usage Analysis",
      "command": "node_modules/.bin/depcheck --dev false",
    },

    {
      "title": "Test",
      "command": "npm test",
    },

    {
      "title": "Dependency Update Analysis",
      "command": "node_modules/.bin/ncu --error-level 2",
      "success": "All dependencies match",
    },
  ],
}

Feedback

I appreciate any kind of feedback. Just create an issue or drop me a mail. Thanks!

License

See LICENSE.