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

@ae-studio/px

v1.1.0

Published

[![npm version](https://img.shields.io/npm/v/%40ae-studio%2Fpx)](https://www.npmjs.com/package/@ae-studio/px) [![npm license](https://img.shields.io/npm/l/%40ae-studio%2Fpx)](./LICENSE) [![monthly downloads](https://img.shields.io/npm/dm/%40ae-studio%2Fpx

Downloads

24

Readme

px

npm version npm license monthly downloads

px is a CLI tool used to run commands across different JavaScript package managers.

With px, you no longer need to switch between package managers when working on different projects. It detects the project's package manager and forwards the command for you. The command is not changed, just forwarded.

Features

  • Execute the same set of commands without needing to switch package managers
  • Automatically installs and uninstalls TypeScript declaration packages with their corresponding npm packages
  • For npm, px automatically adds the run prefix for npm scripts (e.g. px dev results in npm run dev)
  • Compatible with npm, pnpm, yarn, and bun

Install

Before installing px, ensure you have Node.js >= 16 installed on your machine.

npm install -g @ae-studio/px

Usage

To use px, simply replace your package manager command with px followed by the usual arguments you would pass. For example:

px install       # Installs dependencies
px dev           # Runs the 'dev' script, automatically adding 'run' for npm
px test          # Executes the 'test' script
px build         # Builds the project

px will detect the package manager your project is using and execute the command as if you had used the package manager's native CLI.

Automatic TypeScript Declarations

px improves the experience of working in TypeScript projects by making it easier to manage TypeScript declaration packages. When you install or uninstall npm packages in a TypeScript project, px will:

  • On install: Automatically search for and install the corresponding TypeScript declaration packages (@types/*) if they exist.
  • On uninstall: Check for any installed declaration packages associated with the npm packages being removed and uninstall them as well.

This feature saves time and ensures your TypeScript types stay in sync with your installed packages, all without the need for manual intervention.

License

This tool is open-source and available under the MIT License. See the LICENSE file for details.


Built with 🧡 by AE Studio