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

all-the-package-names

Package Overview
Dependencies
Maintainers
0
Versions
5804
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

all-the-package-names

A list of all the public package names on npm. Updated daily.

  • 2.0.1897
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5K
increased by108.5%
Maintainers
0
Weekly downloads
 
Created
Source

all-the-package-names

Maintained by jsDelivr. Please consider becoming a sponsor to support us.

A list of all the public package names on npm.

  • Includes scoped packages
  • Updated daily

Installation

npm install all-the-package-names --save

Usage

The module exports a big flat array of package names:

const names = require("all-the-package-names")

names.includes('superagent')
// => true

// Check if a given package name exists
names.includes('crazy-new-package-name')
// => false

names.length
// => 286289

names.filter(name => name.includes('banana'))
// => [ 'banana', 'banana-banana', 'banana-split', ...]

// Note: This example requires node 4 or greater because it uses
// const, arrow functions, and the `includes` array/string helper.

CLI Usage

You can also use it on the command line. Newline-delimited names are piped to STDOUT:

npm i -g all-the-package-names
all-the-package-names | grep spell

⚠️ Gotchas

Note that while mixed-case package names are no longer allowed to be published to the npm registry, there are over 2800 legacy mixed-case packages, many of which have the same spelling as other existing lowercase packages. See nice-registry/mixed-case-package-names for the the full list.

To avoid the mixed-case names when working with this data, just filter them out:

const names = require('all-the-package-names')
  .filter(name => name === name.toLowerCase())

Tests

npm install
npm test

Dependencies

None

Dev Dependencies

  • all-the-package-repos: Normalized repository URLs for every package in the npm registry.
  • is-number: JavaScript/Node.js utility. Returns true if the value is a number or string number. Useful for checking regex match results, user input, parsed strings, etc.
  • tap-spec: Formatted TAP output like Mocha's spec reporter
  • tape: tap-producing test harness for node and browsers

License

MIT

Keywords

FAQs

Package last updated on 03 Dec 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