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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@alarife/common

v0.7.0

Published

Alarife proyect utilities

Downloads

34

Readme

alarife-common

Collection of CLI utilities for Node.js monorepos / workspaces: add license headers, copy structures, and deploy local packages with yalc.

Spanish version: README.ES.md

Installation

npm i -D alarife-common

Run without prior install:

npx alarife-common <command> [args]
# or
npx common <command> [args]

Supported commands: add-license, copy, deployment-yalc.


add-license

Inserts a standard license header at the start of files across one or multiple projects. Only adds it if it is not already present.

Flags:

  • --path=<path> Container path holding multiple projects (searches subdirectories with package.json).
  • --project-name=<name> Package name (required if using a path without a package.json).
  • --project-author=<author> Author name (required if using a path without a package.json).
  • --project-license=<license> License id (required if using a path without a package.json).
  • --ext=.js,.ts Comma-separated list. Default .js.

Examples:

# All folders must have a package.json
npx alarife-common add-license --path=./packages --ext=.ts

# Single project (.ts and .js), the _ are replaced by spaces
npx alarife-common add-license --path=./utils/lib --project-name=@bigbyte/utils --project-author=Jose_Eduardo_Soria --project-license=Apache_2.0 --ext=.ts,.js

copy

Recursively copies directories (deep) or a single file.

Usage:

npx alarife-common copy <source> <destination>

Behavior:

  • Creates destination directories if they do not exist.
  • Overwrites existing files.
  • If source is a file and destination is a folder, keeps the original filename.
  • If source is a folder, replicates the entire structure.

Examples:

# Copy a single file
npx alarife-common copy ./templates/README.base.md ./packages/pkg-a/README.md

# Recursively copy a folder
npx alarife-common copy ./templates/component ./packages/ui-lib/src/component

deployment.yalc

Automates actions over all subdirectories that contain a package.json in the current path.

Arguments (triggered if present):

  • install Runs npm install in each package.
  • publish Runs npm run yalc:publish in each package.

Requirements:

  • Each package must define in its package.json the script:
    {
    	"scripts": {
    		"yalc:publish": "yalc publish"
    	}
    }
  • Have yalc available (global or via npx).

Examples:

# Install dependencies
npx alarife-common deployment.yalc install

# Publish to yalc
npx alarife-common deployment.yalc publish

# Install then publish
npx alarife-common deployment.yalc install publish

License

This project is licensed under the ISC License. See the LICENSE file for details.


Built with ❤️ by Jose Eduardo Soria Garcia

Part of the BigByte ecosystem