How to find search/find npm packages

后端 未结 12 668
闹比i
闹比i 2020-12-07 08:09

What ways are there to find npm packages?

Below is community maintained listing compiled from the answers below.

NPM Specific

  • In console,
12条回答
  •  借酒劲吻你
    2020-12-07 09:04

    It's sad but npm search won't work for me on node version 6+.

    A quick workaround is by doing a curl from the command line:

    curl --fail -O https://www.npmjs.com/package/q-promise 2>&1 | grep '404'
    

    If this command returns nothing then the module exist if it does return a 404 the name is available for you to use.

提交回复
热议问题