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

@ranzucker/pipe

v0.0.1

Published

Visual GitLab CI pipeline editor - build .gitlab-ci.yml files with a drag-and-drop interface

Readme

GitLab Pipeline Visual Editor

A visual editor for .gitlab-ci.yml files. Drag and drop jobs, connect dependencies, edit properties in a sidebar. Exports valid YAML that GitLab actually accepts.

What it does

It lets you build pipelines visually instead of fighting with indentation and syntax. Import existing YAML, edit it visually, export it back. Works entirely in the browser, 100% offline.

Tech stack

  • SvelteKit 5 with runes (the new reactive primitives)
  • @xyflow/svelte for the node-based UI
  • Monaco Editor for script editing
  • Tailwind CSS v4
  • TypeScript throughout

Project structure

src/lib/
├── stores/          # State management (pipeline, selection, history, UI)
├── types/           # TypeScript types for GitLab CI schema
├── yaml/            # YAML parsing, generation, validation
├── utils/           # Layout calculations, keyboard shortcuts, localStorage
└── components/
    ├── canvas/      # The flow diagram (nodes and edges)
    ├── panels/      # Properties editor sidebar
    └── editors/     # Monaco editor, rules builder, etc.

The layout: Stages are columns, jobs stack vertically within them. Dependencies between jobs in the same stage render as horizontal subflows.

Features

  • Full GitLab CI schema support (all the job properties, rules, artifacts, cache, etc.)
  • Import/export YAML files
  • Syntax highlighting for bash scripts
  • Resizable properties panel (drag the left edge)
  • Validates dependencies, catches circular refs, warns about deprecated stuff
  • Undo/redo (50 action limit)
  • Auto-saves to localStorage

Getting started

Using npx (recommended)

npx pipe dev

This will install dependencies automatically if needed and start the dev server. Then open http://localhost:5173.

Local development

npm install
npm run dev

If there's no saved state, it loads a sample corporate pipeline (Python backend, Next.js frontend, K8s deployments) so you can see how it works.

Available npx commands

npx pipe dev      # Start dev server
npx pipe build    # Build for production
npx pipe preview  # Preview production build

Keyboard shortcuts

  • Ctrl+Z / Cmd+Z - Undo
  • Ctrl+Shift+Z / Cmd+Shift+Z - Redo
  • Delete / Backspace - Delete selected job
  • Escape - Clear selection
  • Ctrl+1 - Toggle left panel
  • Ctrl+2 - Toggle right panel

GitLab CI support

Pretty much everything:

Job properties: script, image, rules, needs, when, allow_failure, tags, variables, artifacts, cache, parallel, timeout, retry, interruptible, resource_group, environment, release, trigger, services, secrets, id_tokens, dast_configuration, hooks, before_script, after_script, extends, dependencies

Global: variables, default, workflow, include, stages

Development

npm run dev      # Dev server with HMR
npm run build    # Production build
npm run preview  # Preview the production build locally
npm run check    # Type check with svelte-check

License

MIT