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 🙏

© 2026 – Pkg Stats / Ryan Hefner

insta-pipe

v0.0.0-rc.57

Published

<p align="center"> <a href="https://insta.ci"> <img src="https://cdn.insta.ci/insta-pipe.svg" /> <h1 align="center">Insta Pipe</h1> </a> </p> <p align="center"> <strong>Delightful End-to-End Testing</strong> </p> <p align="center"> Insta P

Readme

Installation

If you don't have Node.js or Yarn installed:

curl -o- https://cdn.insta.ci/install.sh | bash

Or using Yarn directly:

yarn global add insta-pipe

Getting Started

# Create a template
pipe create --template=hello-world .insta

# Run tasks
cd .insta
pipe

Overview

tasks.ts

import { task } from 'insta-pipe';

task('First task', async () => {
  console.log('This message is the task log');
});

When you start a process, you use exec. The stdout and stderr of this process is written to its own stream.

tasks.ts

import { task, exec } from 'insta-pipe';

task('First task', async () => {
  await exec('cat', ['./task.ts']);
});

You can also create streams of any media type. The most common ones are: text/plain for logs, image/* for images, and video/webm for video.

tasks.ts

import { task, stream } from 'insta-pipe';

task('First task', async () => {
  const stream = stream('Example stream', {
    mediatype: 'text/plain',
  });
  stream.writeString('Written to the stream\n');
  stream.close();
});

Configuring Tasks

Tasks shall be defined statically. That is, no task should be configured based on values defined at runtime.

This ensures that the task DAG is deterministic, and reproducible.

Protocol

Insta is built on top of Protocol buffers and gRPC. In the future, we plan to add support to other languages, and offer the exact same features the TypeScript client offers.

Changes to the Runner service are backward-compatible.

The Insta server is aware of the version of the protocol the client uses, and is able to handle any future change in behavior.

Breaking changes will require a new Runner service.