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

@alt-jero/status-line

v1.0.0

Published

A quick and simple way to write status updates at the bottom of the CLI display without logging all status updates to the line-buffer.

Downloads

61

Readme

StatusLine

Introduction

This tiny package was an attempt to create a simple way of adding a status line at the bottom of a console when running node.js code in a CLI environment.

Installation

$ npm i @alt-jero/status-line

Usage

const statusLine = require('@alt-jero/status-line');

// Set/overwrite bottom line of console display
statusLine(`I'm really-fast, but ephemeral.`)

// Write a non-ephemeral line to the display (fast)
statusLine.logString(`I'm fast and stay in your line-buffer.`)

// Write via console.log while taking status line into account (slower)
statusLine.log(`I'm slower, but can handle objects and arrays.`)

// Write out an error report to the display
statusLine.error(new Error(`We'll see a stack-trace without the status line getting involved!`))

Benchmark

I have attempted to make it as fast as possible without sacrificing utility. To that end, it's possible to use the normal .log() and .error() methods which forward the given data to console.log() and console.error() respectively after clearing the status line. In the interest of speed, it's also possible to use the .logString() method if you know you just want to write a string. The latter method uses process.stdout.write() in the background, also taking the presence of the status line into account.

Below is the result of a benchmark run on my own computer: A macbook air from mid-2013 (I know, dinosaur xD) with the i7 processor and 8GiB RAM. The results show the difference in speed is miniscule.

The following have been benchmarked with 250,000 iterations:

  1. process.stdout took 1.771997629 seconds
  2. statusLine() took 1.462698296 seconds
  3. statusLine.logString() took 2.345646944 seconds
  4. console.log() took 2.327852828 seconds
  5. statusLine.log() took 3.441730405 seconds

If you want to run the benchmark yourself, first be warned that the benchmark will obliterate the contents of your line buffer, as it needs to output about 1.25M lines of Running benchmark... in order to complete the test. You can run the benchmark like so:

$ npm run test