Gathering detailed insights and metrics for all-package-names
Gathering detailed insights and metrics for all-package-names
Gathering detailed insights and metrics for all-package-names
Gathering detailed insights and metrics for all-package-names
all-the-package-names
A list of all the public package names on npm. Updated daily.
all-the-package-repos
All the repository URLs in the npm registry as an object whose keys are package names and values are URLs
all-the-package-types
A list of all the `@types` packages on npm with metadata. Updated daily.
persian-names
Package of all Iranian (and Arabic) names
npm install all-package-names
Typescript
Module System
TypeScript (98.77%)
JavaScript (1.23%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
28 Stars
964 Commits
2 Forks
2 Watchers
2 Branches
2 Contributors
Updated on Jun 19, 2025
Latest Version
2.0.897
Package Id
all-package-names@2.0.897
Unpacked Size
37.60 MB
Size
37.59 MB
File Count
16
Published on
Mar 26, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Get all NPM package names.
Includes a JSON file of all NPM package names at the time of last publish, but also allows for syncing with latest packages.
1yarn add all-package-names
1npm install all-package-names
1import { load, sync } from "all-package-names"; 2 3// Load from an existing sync (included on install) 4 5load().then(({ packageNames }) => { 6 console.log(packageNames); // array of all package names on npm 7}); 8 9// Sync and return new package names 10 11sync().then(({ packageNames }) => { 12 console.log(packageNames); // array of all package names on npm 13}); 14 15// Load with a maxAge of 1 minute 16 17load({ maxAge: 60000 }).then(({ packageNames }) => { 18 console.log(packageNames); // array of all package names on npm 19}); 20 21// Sync with a maxAge of 1 minute 22 23sync({ maxAge: 60000 }).then(({ packageNames }) => { 24 console.log(packageNames); // array of all package names on npm 25});
1import { load, sync, LoadOptions, SyncOptions, Save, State, StateHook } from "all-package-names"; 2 3function load({ maxAge }: LoadOptions): Promise<Save> 4 5function sync({ maxAge }: LoadOptions = {}) => Promise<Save>; 6 7type LoadOptions = { 8 /** 9 * Maximum milliseconds after a sync to avoid re-syncing 10 */ 11 maxAge?: number; 12}; 13 14type Save = { 15 /** 16 * Index of last package synced 17 */ 18 since: number; 19 /** 20 * Timestamp of last sync 21 */ 22 timestamp: number; 23 /** 24 * Array of package names 25 */ 26 packageNames: string[]; 27}; 28
1import { sync, LoadOptions, SyncOptions, Save, State, StateHook } from "all-package-names"; 2 3function sync({ onData, onStart, onEnd, maxAge }: SyncOptions = {}) => Promise<Save>; 4 5type SyncOptions = { 6 onStart?: StateHook; 7 onData?: StateHook; 8 onEnd?: StateHook; 9} & LoadOptions; 10 11type StateHook = (state: State) => void; 12 13type State = { 14 /** 15 * Starting package sync index 16 */ 17 start: number; 18 /** 19 * Current package sync index 20 */ 21 index: number; 22 /** 23 * Ending package sync index 24 */ 25 end: number; 26 /** 27 * Percentage of sync completed 28 */ 29 progress: number; 30 /** 31 * Milliseconds since sync began 32 */ 33 elapsed: number; 34 /** 35 * Set of package names that have been added 36 */ 37 packageNames: Set<string>; 38};
Usage: all-package-names [options] [command]
Options:
-v --version output the version number
-h, --help display help for command
Commands:
sync [options] Sync latest packages from NPM
help [command] display help for command
Sync latest packages from NPM.
Usage: all-package-names sync [options]
Sync latest packages from NPM
Options:
-m --max-age [milliseconds] Maximum milliseconds after a sync to avoid re-syncing
-h, --help display help for command
Add all-package-names commands to any commander program:
1import { program } from "commander"; 2import { syncCommand } from "all-package-names"; 3 4syncCommand(program);
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
54 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More