Gathering detailed insights and metrics for search-npm-packages
Gathering detailed insights and metrics for search-npm-packages
Gathering detailed insights and metrics for search-npm-packages
Gathering detailed insights and metrics for search-npm-packages
npm-keyword
Get a list of npm packages with keywords
all-the-package-names
A list of all the public package names on npm. Updated daily.
search-packages
Search packages on npm
gatsby-source-npm-package-search
Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index
npm install search-npm-packages
Typescript
Module System
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
36 Commits
4 Branches
1 Contributors
Updated on Jan 28, 2023
Latest Version
1.0.4
Package Id
search-npm-packages@1.0.4
Unpacked Size
16.76 kB
Size
5.83 kB
File Count
8
NPM Version
6.13.7
Node Version
13.7.0
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
2
2
Promise based package for searching other npm packages in registry. With rating search support as on the npmjs.com
1npm i search-npm-packages 2# or if you using yarn 3yarn add search-npm-packages
1const npmSearch = require('search-npm-packages')
Or import using TypeScript or ESM
1import npmSearch from 'search-npm-packages'
The output will be an array with packages from the register
1npmSearch({ name: 'telegram' }) 2 .then(packages => console.log(packages)) 3 .catch(e => console.error(e)) 4 5// output: 6/*[ 7 { 8 name: 'telegram', 9 scope: 'unscoped', 10 version: '1.0.0-alpha.2', 11 description: 'NodeJS MTProto API Telegram client library,', 12 date: { ts: 1575163205790, rel: '2 months ago' }, 13 links: { 14 npm: 'https://www.npmjs.com/package/telegram', 15 homepage: 'https://github.com/gram-js/gramjs#readme', 16 repository: 'https://github.com/gram-js/gramjs', 17 bugs: 'https://github.com/gram-js/gramjs/issues' 18 }, 19 publisher: { 20 name: 'youtwitface', 21 avatars: [Object], 22 created: [Object], 23 email: 'contact@lungers.com' 24 }, 25 maintainers: [ [Object] ], 26 keywordsTruncated: false, 27 keywords: [] 28 }, 29 { 30 name: 'winston-telegram', 31 scope: 'unscoped', 32 version: '2.2.2', 33 ... 34*/
For search by keywords use keywords
option.
if use the
name
andkeywords
option at the same time. The search will be performed by keywords
1npmSearch({ keywords: ['backend', 'cli'] }) 2 .then(packages => console.log(packages)) 3 .catch(e => console.error(e)) 4 5// output: 6/*[ 7 { 8 name: '@rucken/cli', 9 scope: 'rucken', 10 version: '4.1.5', 11 description: 'Console tools for create and build Angular7+, Bootstrap, Ionic and NestJS application based on Rucken template', 12 keywords: [ 13 'cli', 'nx', 14 'workspace', 'ngx', 15 'angular7', 'nestjs', 16 'ionic', 'bootstrap', 17 'rucken', 'admin', 18 'ui', 'backend', 19 'mobile', 'frontend' 20 ], 21 date: { ts: 1557580280060, rel: '9 months ago' }, 22 23 ... 24*/
You can use ranking search as on the npmjs.com
ranking
can be optimal
, popularity
, quality
or maintenance
.
1npmSearch({ 2 name: 'torrent', 3 ranking: "quality" 4}) 5 .then(packages => packages.forEach(p => { 6 console.log(p.links.npm) 7 })) 8 9// output: 10/* 11https://www.npmjs.com/package/torrent 12https://www.npmjs.com/package/torrent-extract-hash 13https://www.npmjs.com/package/magnet2torrent 14... 15*/
This package with full TypeScript support. And your IDE can use autocomplete.
Also you can import RegistryPackage
type, and NpmSearchParams
1import { RegistryPackage, NpmSearchParams } from "search-npm-packages";
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
8 existing vulnerabilities detected
Details
Reason
project is archived
Details
Reason
Found 0/21 approved changesets -- score normalized to 0
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
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
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