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

@xcritical/boltify

v1.0.3

Published

A tool for managing JavaScript projects with multiple packages based on Bolt.

Downloads

13

Readme

Boltify

A tool for managing projects with multiple packages based on Bolt.

Build Status

What are workspaces?

A workspace is like any other node package: It's just a directory with its own package.json.

Workspaces are grouped into a single "project". A project is also just a node package at the root of your repository. This is sometimes referred to as a "monorepo", but we prefer the term "multi-package repo".

project
├── package.json
├── workspace-one
│   ├── package.json
│   └── index.js
└── workspace-two
    ├── package.json
    └── index.js

Put another way, workspaces are just like any other package, except they are nested within a larger project/repo. Each workspace can have its own code and scripts. Workspaces can also be grouped into sub-directories for further organization.

Note: This idea is not new, other tools like Lerna have existed for awhile and are used by many projects. Boltify is a fresh take on the idea.

Commands

Note: Boltify is under active development and some of these commands have not yet been implemented.

| Command | Description | Status | | --------------------------------------- | ------------------------------------------------------------------------- |--------| | boltify version | Updates the version of your package(s) |✅| | └ boltify version --only [name glob] | Filter package(s) by name |✅| | └ boltify version --ignore [name glob] | Filter out package(s) by name |✅| | └ boltify version --only-fs [file glob] | Filter package(s) by file path |✅| | └ boltify version --ignore-fs [file glob] | Filter out package(s) by file path |✅| | └ boltify version --no-git-tag-version | New tag(s) will not be added and pushed |✅| | └ boltify version --no-push | New tag(s) will not be pushed |✅| | boltify run [script] | Run a script in a package |✅| | └ boltify run --only [name glob] | Filter package(s) by name |✅| | └ boltify run --ignore [name glob] | Filter out package(s) by name |✅| | └ boltify run --only-fs [file glob] | Filter package(s) by file path |✅| | └ boltify run --ignore-fs [file glob] | Filter out package(s) by file path |✅| | └ boltify run --since ref | Filter package(s) that have been updated since the specified ref |✅| | boltify workspaces/ws | Show package(s): || | └ boltify ws --only [name glob] | Filter package(s) by name |✅| | └ boltify ws --ignore [name glob] | Filter out package(s) by name |✅| | └ boltify ws --only-fs [file glob] | Filter package(s) by file path |✅| | └ boltify ws --ignore-fs [file glob] | Filter out package(s) by file path |✅| | └ boltify ws --since ref | Filter package(s) that have been updated since the specified ref |✅|