Socket
Book a DemoInstallSign in
Socket

npq

Package Overview
Dependencies
Maintainers
2
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npq

marshall your npm/npm package installs with high quality and class 🎖

3.13.1
latest
Source
npmnpm
Version published
Weekly downloads
1.4K
80.88%
Maintainers
2
Weekly downloads
 
Created
Source

npq allows you to audit npm packages before you install them

npm license codecov CI Known Vulnerabilities Security Responsible Disclosure

npq demo screenshot

Media coverage about npq:

About

Once npq is installed, you can safely* install packages:

npq install express

npq will perform the following steps to sanity check that the package is safe by employing syntactic heuristics and querying a CVE database:

  • Consult the snyk.io database of publicly disclosed vulnerabilities to check if a security vulnerability exists for this package and its version.
  • Package age on npm
  • Package download count as a popularity metric
  • Package has a README file
  • Package has a LICENSE file
  • Package has pre/post install scripts

If npq is prompted to continue with the install, it simply hands over the actual package install job to the package manager (npm by default, or as specified via the NPQ_PKG_MGR environment variable). Note that if a package manager is specified via command-line options, it will override the NPQ_PKG_MGR environment variable.

DISCLAIMER: there's no guaranteed absolute safety; a malicious or vulnerable package could still exist that has no security vulnerabilities publicly disclosed and passes npq's checks.

Demo

https://github.com/user-attachments/assets/619ab3f6-aa3f-483c-9560-0f18e033e6bf

Install

npm install -g npq

Note: we recommend installing with npm rather than yarn. That way, npq can automatically install shell aliases for you.

You can also install npq via Homebrew on macOS or Linux:

brew install npq

Usage

Install packages with npq

npq install express

Embed in your day to day

Since npq is a pre-step to ensure that the npm package you're installing is safe, you can safely embed it in your day-to-day npm usage so there's no need to remember to run npq explicitly.

alias npm='npq-hero'

Offload to package managers

If you're using yarn, pnpm, or generally want to explicitly tell npq which package manager to use you can specify an environment variable: NPQ_PKG_MGR=<package-manager>

Examples:

Using yarn:

alias yarn="NPQ_PKG_MGR=yarn npq-hero"

Using pnpm:

NPQ_PKG_MGR=pnpm npx npq install fastify

Using pnpm with alias:

alias pnpm="NPQ_PKG_MGR=pnpm npq-hero"

Note: npq by default will offload all commands and their arguments to the npm (or other package manager as specified) after it finished its due-diligence checks for the respective packages.

Marshalls

Marshall NameDescriptionNotes
ageWill show a warning for a package if its age on npm is less than 22 daysChecks a package creation date, not a specific version
authorWill show a warning if a package has been found without an author fieldChecks the latest version for an author
downloadsWill show a warning for a package if its download count in the last month is less than 20
readmeWill show a warning if a package has no README or it has been detected as a security placeholder package by npm staff
repoWill show a warning if a package has been found without a valid and working repository URLChecks the latest version for a repository URL
scriptsWill show a warning if a package has a pre/post install script which could potentially be malicious
snykWill show a warning if a package has been found with vulnerabilities in Snyk's databaseFor Snyk to work you need to either have the snyk npm package installed with a valid API token, or make the token available in the SNYK_TOKEN environment variable, and npq will use it
licenseWill show a warning if a package has been found without a license fieldChecks the latest version for a license
expired domainsWill show a warning if a package has been found with one of its maintainers having an email address that includes an expired domainChecks a dependency version for a maintainer with an expired domain
signaturesWill compare the package's signature as it shows on the registry's pakument with the keys published on the npmjs.com registry
provenanceWill verify the package's attestations of provenance metadata for the published package
version-maturityWill show a warning if the specific version being installed was published less than 7 days agoHelps identify recently published versions that may not have been reviewed by the community yet
newBinWill show a warning if the package version being installed introduces a new command-line binary (via the bin field in package.json) that was not present in its previous version.Helps identify potentially unexpected new executables being added to your node_modules/.bin/ directory.
typosquattingWill show a warning if the package name is similar to a popular package name, which could indicate a potential typosquatting attack.Helps identify packages that may be trying to trick users into installing them by mimicking popular package names.
deprecationWill show a warning if the package version being installed is deprecated.Helps identify packages that are no longer maintained or recommended for use.

Disabling Marshalls

To disable a marshall altogether, set an environment variable using with the marshall's shortname.

Example, to disable the Snyk vulnerability marshall:

MARSHALL_DISABLE_SNYK=1 npq install express

Available Marshall Environment Variables

Here are all the available environment variable names for disabling specific marshalls:

Marshall NameEnvironment VariableDescription
ageMARSHALL_DISABLE_AGEDisable package age checks
authorMARSHALL_DISABLE_AUTHORDisable package author verification
downloadsMARSHALL_DISABLE_DOWNLOADSDisable download count checks
expired domainsMARSHALL_DISABLE_MAINTAINERS_EXPIRED_EMAILSDisable expired domain checks for maintainer emails
licenseMARSHALL_DISABLE_LICENSEDisable license availability checks
provenanceMARSHALL_DISABLE_PROVENANCEDisable package provenance verification
repoMARSHALL_DISABLE_REPODisable repository URL validation
scriptsMARSHALL_DISABLE_SCRIPTSDisable pre/post install script checks
signaturesMARSHALL_DISABLE_SIGNATURESDisable registry signature verification
snykMARSHALL_DISABLE_SNYKDisable Snyk vulnerability checks
typosquattingMARSHALL_DISABLE_TYPOSQUATTINGDisable typosquatting detection
version-maturityMARSHALL_DISABLE_VERSION_MATURITYDisable version maturity checks
newBinMARSHALL_DISABLE_NEWBINDisable new binary introduction checks
deprecationMARSHALL_DISABLE_DEPRECATIONDisable deprecation checks

Run checks on package without installing it

npq install express --dry-run

Force non-rich text output

npq install express --plain

Learn Node.js Security

Node.js Security

Screenshot 2024-09-12 at 20 14 27

Learn Node.js Secure Coding techniques and best practices from Liran Tal

FAQ

  • Can I use NPQ without having npm or yarn?
  • NPQ will audit a package for possible security issues, but it isn't a replacement for npm or yarn. When you choose to continue installing the package, it will offload the installation process to your choice of either npm or yarn.
  • How is NPQ different from npm audit?
  • npm install will install a module even if it has vulnerabilities; NPQ will display the issues detected, and prompt the user for confirmation on whether to proceed installing it.
  • NPQ will run synthetic checks, called marshalls, on the characteristics of a module, such as whether the module you are going to install has a pre-install script which can be potentially harmful for your system and prompt you whether to install it. Whereas npm audit will not perform any such checks, and only consults a vulnerability database for known security issues.
  • npm audit is closer in functionality to what Snyk does, rather than what NPQ does.
  • Do I require a Snyk API key in order to use NPQ?
  • It's not required. If NPQ is unable to detect a Snyk API key for the user running NPQ, then it will skip the database vulnerabilities check. We do, however, greatly encourage you to use Snyk, and connect it with NPQ for broader security.

Contributing

Please consult the CONTRIBUTING for guidelines on contributing to this project

Author

Liran Tal liran.tal@gmail.com

FAQs

Package last updated on 30 Aug 2025

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.