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

symlynx

v1.0.2

Published

A simple tool to create multiple symlinks specified in one or more configuration files.

Readme

symlynx

A simple tool to create multiple symlinks specified in one or more configuration files.

How it works:

  • Recursively scans for links.yaml config files
  • Creates symlinks accordingly
  • Adds symlinks to .gitignore file in root folder

Important: Paths are relative to each config file's directory.

Installing

Install the package via npm:

npm install -g symlynx

Usage

Create one or more links.yaml config files in your project, ensuring all paths are relative to their defining config file:

- source: Relative/Path/To/Symlink1
  target: Relative/Path/To/TargetFolder1
- source: Relative/Path/To/Symlink2
  target: Relative/Path/To/TargetFolder2
[...]

Run the following command from your project's root directory to create symlinks recursively, add them to .gitignore, and display verbose messages:

symlynx -crgv

Note that, on Windows platform, this command must be ran in Administrator mode.

Syntax

symlynx [options]

Options:

-V, --version       output the version number
-c, --create        create symlinks
-d, --delete        delete all symlinks (use -dr to delete recursively)
-r, --recursive     process recursively
-g, --git-ignore    add symlinks to .gitignore in each config's folder
-i, --input <file>  config file name (default: links.yaml)
-l, --log <file>    log file name
-v, --verbose       output extra information to console
-h, --help          output usage information

Example

Given the following directory structure:

\---ProjectRoot
    |   links.yaml
    |   
    +---Folder1
    |   \---SubFolder1
    |       |---(assuming we need a `SourceFolder1` symlink here targetting `TargetFolder1`)
    |       \---(and a `SourceFolder2` symlink here targetting `TargetFolder2`)
    |   
    \---Folder2
        \---SubFolder2
            |---TargetFolder1
            \---TargetFolder2

In the root links.yaml file, put:

- source: Folder1/SubFolder1/SourceFolder1
  target: Folder2/SubFolder2/TargetFolder1
- source: Folder1/SubFolder1/SourceFolder2
  target: Folder2/SubFolder2/TargetFolder2

Credits

Inspired from a script by Emmanuel Jacquier ([email protected])