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

@wrikka/symlink

v0.1.1

Published

Cross-platform symlink manager with shell support for pwsh, bash, zsh, and cmd

Readme

Symlink Manager

Cross-platform symlink management CLI with shell support for pwsh, bash, zsh, fish, and cmd.

Features

  • Create, remove, and list symlinks
  • Git integration (init, create repo, commit & push)
  • Shell completion scripts for PowerShell, Bash, Zsh, and Fish
  • Interactive prompts with @clack/prompts
  • Cross-platform support (Windows, macOS, Linux)

Installation

# Using bun
bun add @wrikka/symlink

# Or install globally
bun add -g @wrikka/symlink

Usage

Create a symlink

# Interactive mode
symlink create

# With options
symlink create -s /path/to/source -t /path/to/link

# Force overwrite
symlink create -s /path/to/source -t /path/to/link --force

Remove a symlink

# Interactive mode
symlink remove

# Direct
symlink remove -t /path/to/link

List symlinks

# Current directory
symlink list

# Specific directory
symlink list -d /path/to/scan

Git integration

# Initialize git repo
symlink git init

# Create remote repo
symlink git create -n my-repo -d "My repository"

# Commit and push
symlink git push -m "Initial commit"

Shell completion

# Install for current shell
symlink shell install

# Install for specific shell
symlink shell install -s bash

Commands

| Command | Description | |---------|-------------| | symlink create | Create a new symlink | | symlink remove | Remove a symlink | | symlink list | List all symlinks | | symlink git init | Initialize git repository | | symlink git create | Create remote repository | | symlink git push | Commit and push changes | | symlink shell install | Install shell completion |

Options

| Option | Description | |--------|-------------| | -s, --source <path> | Source path | | -t, --target <path> | Target path | | -f, --force | Force overwrite | | -i, --interactive | Interactive mode | | -d, --directory <path> | Directory to scan | | -m, --message <msg> | Commit message | | -a, --all | Stage all changes | | -n, --name <name> | Repository name | | -p, --private | Create private repository |

Development

# Install dependencies
bun install

# Type checking
bun run typecheck

# Build
bun run build

# Test
bun test

# Development mode
bun run dev

# Lint
bun run lint

# Format
bun run format

License

MIT