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

pkl

v1.0.0

Published

A package linker for lerna monorepos - use it to install packages from your monorepo into your application

Downloads

6

Readme

pkl

pkl (pronounced pickle) is a package linker for lerna monorepos. Use it to install packages from your monorepo into your application. This can be useful for trying a package which is in development before you publish it.

Installation

pkl can be installed from the npm registry and, as it works across projects, should be installed globally.

Using npm

npm install -g pkl

Using yarn

yarn global add pkl

Usage

There's a simple example below of adding a monorepo, listing all added monorepos, using it to install a package from, and then removing the monorepo.

# Add a monorepo (so you can use it during install)
$ pkl add components ./path/to/my/component-library
success: added components
 - Name mapped to /Users/username/projects/path/to/my/component-library


# Show the monorepos you've added
$ pkl ls
success: showing 1 monorepo
 - components → /Users/username/projects/path/to/my/component-library


# Install package "button" into your project from the monorepo
cd ./my-project
$ pkl install components button
✔ button - installed
success: installation complete
 - button (components) → [email protected]


# Remove a monorepo (you don't be able to install from it any more)
$ pkl rm components
success: removed components
 - Removed mapping to /Users/username/projects/path/to/my/component-library

Flags

To get help on the supported commands, use the --help flag (or run without any flags or commands).

pkl --help

To see which version you have installed, use the --version flag.

pkl --version

Some command use npm as part of their implementation. To use yarn instead, add the --yarn flag. This is only for supported commands; currently install.

pkl install components button --yarn

Commands

pkl has four sub-commands; add, rm, ls, install

pkl-add - add a named monorepo

Synopsis

pkl add <monorepo-name>
pkl add <monorepo-name> <folder-path>

Description

This command adds a monorepo name and location, so it shows in the monorepo list (ls) and can be used when running install. If a path to the monorepo folder is not provided, the current working directory (the one the command is run from) will be used instead.

The monorepo name and location are added to the monorepo mapping JSON file, which is stored at ~/.pkl/monorepo-mapping.json and consists of each monorepo name mapping to the corresponding absolute path.

pkl-rm - remove a named monorepo

Synopsis

pkl rm <monorepo-name>

Description

This command removes a monorepo by name, so it no longer shows in the monorepo list (ls) and cannot be used when running install.

The monorepo name entry is removed from the monorepo mapping JSON file, which is stored at ~/.pkl/monorepo-mapping.json.

pkl-ls - list added monorepos and their locations

Synopsis

pkl ls

Description

This command lists all the added monorepo names and locations, which can be used when using the install command.

The monorepo mapping JSON file, stored at ~/.pkl/monorepo-mapping.json, is pretty printed to the console.

pkl-install - install a package from a monorepo

Synopsis

pkl install <monorepo-name> <package-name>
pkl install <monorepo-name> <package-folder-name>
pkl install <monorepo-name> <package-folder-name> [...<package>]

Description

This command installs the named packages from the named monorepo, into the project where the command is run. Packages can be referenced by their name (as listed in the name field of their corresponding package.json file) or by their folder name. Multiple packages can be listed to install more than one in a single command.

Note: For packages without a version, these can only be referenced by their folder name.

Packages to be installed are packed into tar files and moved into a .pkl/ folder within your project. These are then installed -- you may notice your project package.json file referencing file:.pkl/my-package.tgz instead of a version. To prevent committing these files, you should add the .pkl/ directory to your .gitignore.

By default, install will use npm to find lerna, pack packages and install them. If you want to use yarn instead, add the --yarn flag to the end of your command.


Contributing

This cli tool is written using commander, with each command implemented in its own file under the ./commands folder.

Linting is enforced using eslint, configured with airbnb-base and prettier.

npm run lint

# Run and apply automatic fixes for any issues
npm run lint -- --fix

Unit testing is written and run using jest, and relies heavily on mocking.

npm test

# Run specific test file
npm test -- ./path/to/file.test.js

# Run in watch mode
npm test -- --watch

# Generate coverage report
npm test -- --coverage