PATH:
usr
/
lib
/
node_modules
/
npm
/
lib
/
commands
const Pipeline = require('minipass-pipeline') const libSearch = require('libnpmsearch') const { log, output } = require('proc-log') const formatSearchStream = require('../utils/format-search-stream.js') const BaseCommand = require('../base-cmd.js') class Search extends BaseCommand { static description = 'Search for packages' static name = 'search' static params = [ 'json', 'color', 'parseable', 'description', 'searchlimit', 'searchopts', 'searchexclude', 'registry', 'prefer-online', 'prefer-offline', 'offline', ] static usage = ['<search term> [<search term> ...]'] async exec (args) { const opts = { ...this.npm.flatOptions, ...this.npm.flatOptions.search, include: args.map(s => s.toLowerCase()).filter(Boolean), exclude: this.npm.flatOptions.search.exclude.split(/\s+/), } if (opts.include.length === 0) { throw new Error('search must be called with arguments') } // Used later to figure out whether we had any packages go out let anyOutput = false // Grab a configured output stream that will spit out packages in the desired format. const outputStream = formatSearchStream({ args, // --searchinclude options are not highlighted ...opts, npm: this.npm, }) log.silly('search', 'searching packages') const p = new Pipeline( libSearch.stream(opts.include, opts), outputStream ) p.on('data', chunk => { if (!anyOutput) { anyOutput = true } output.standard(chunk.toString('utf8')) }) await p.promise() if (!anyOutput && !this.npm.config.get('json') && !this.npm.config.get('parseable')) { output.standard('No matches found for ' + (args.map(JSON.stringify).join(' '))) } log.silly('search', 'search completed') } } module.exports = Search
[-] audit.js
[edit]
[-] diff.js
[edit]
[-] fund.js
[edit]
[-] prefix.js
[edit]
[-] restart.js
[edit]
[-] rebuild.js
[edit]
[-] unpublish.js
[edit]
[-] ci.js
[edit]
[-] logout.js
[edit]
[-] dist-tag.js
[edit]
[-] star.js
[edit]
[-] test.js
[edit]
[-] deprecate.js
[edit]
[-] help-search.js
[edit]
[-] get.js
[edit]
[-] docs.js
[edit]
[-] sbom.js
[edit]
[-] doctor.js
[edit]
[-] uninstall.js
[edit]
[-] stars.js
[edit]
[-] link.js
[edit]
[-] version.js
[edit]
[-] query.js
[edit]
[-] whoami.js
[edit]
[-] access.js
[edit]
[-] adduser.js
[edit]
[-] completion.js
[edit]
[-] start.js
[edit]
[-] install-test.js
[edit]
[-] pkg.js
[edit]
[-] owner.js
[edit]
[-] prune.js
[edit]
[-] bugs.js
[edit]
[-] dedupe.js
[edit]
[-] outdated.js
[edit]
[-] publish.js
[edit]
[-] token.js
[edit]
[+]
..
[-] org.js
[edit]
[-] shrinkwrap.js
[edit]
[-] root.js
[edit]
[-] login.js
[edit]
[-] pack.js
[edit]
[-] find-dupes.js
[edit]
[-] cache.js
[edit]
[-] team.js
[edit]
[-] repo.js
[edit]
[-] exec.js
[edit]
[-] search.js
[edit]
[-] update.js
[edit]
[-] install.js
[edit]
[-] ping.js
[edit]
[-] ll.js
[edit]
[-] explain.js
[edit]
[-] ls.js
[edit]
[-] profile.js
[edit]
[-] init.js
[edit]
[-] config.js
[edit]
[-] edit.js
[edit]
[-] run-script.js
[edit]
[-] view.js
[edit]
[-] help.js
[edit]
[-] stop.js
[edit]
[-] explore.js
[edit]
[-] hook.js
[edit]
[-] install-ci-test.js
[edit]
[-] set.js
[edit]
[-] unstar.js
[edit]