Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ae-studio/px

Package Overview
Dependencies
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ae-studio/px

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

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
7
Created
Source

px

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, and yarn

Install

npm install -g pxcli

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 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

Keywords

FAQs

Package last updated on 30 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc