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

@whitecolor/yall

v1.0.0-pre.6

Published

> Yarn workflow for monorepos (projects with multiple packages). And not only.

Downloads

9

Readme

Yall

Yarn workflow for monorepos (projects with multiple packages). And not only.

Why

Because.

What

  • Yall is like yarn/npm for multiple folders with package.json/yarn.lock.
  • It looks up for folders with package.json/yarn.lock in the project tree and runs there given command (by default in parallel).
  • It can watch manifest/lock files and run commands automatically on change, this is useful in container based scenarios.
  • Can handle cache error which may occurr when running yarn commands concurrently.

Install

npm (scoped) Build Status

  npm i @whitecolor/yall -g

Work in progress. It is a pre-release.

Usage

yall [yarn|npm command] [yarn|npm flags] [yall flags]

Additional yall's option flags:

  • concurrency (con) - max count of tasks to run in parallel
  • fail-fast - interupt process as soon as when the first error occures (by default process is not interupted if error happend in one of the folders, but when all tasks finished it exits with error code)
  • folders - folders where to run (including nested), relative to cwd, wilcard not supported
  • dot-folders - include (hidden) folders starting with dot
  • exclude-folders - folders where not to run (including nested)
  • include-folders - additional folders to include (for example: explit dot folders).
  • here - will run only in current folder, if folders specified will run in those folders, but without nested
  • in - shortcut for --include-folders plus --here
  • link-files - create symlinks for file: dependencies (will not touch yalc dependencies)
  • npm - run npm command, alternativly to yarn
  • clean-up - will clean-up/remove node_modules before command run
  • lock - will create .yall.lock file (or file with specified name) while running commands and remove it after everything is done.
  • watch - watch mode, will watch for changes of yarn.lock (package.json in case of npm or custom list of files specified) and run command in folder where file changed, it periodically rescans folders for new files
  • watch-content - will check file content for change, not just all change events.

Licence

WTF.