Download a package from npm as a tar (not installing it to a module)

前端 未结 5 940
滥情空心
滥情空心 2021-01-30 06:18

Is there some URL from which I can download a given package from npm (as a tarball or something)? I need the exact files that were originally uploaded to npm.

Using

5条回答
  •  轮回少年
    2021-01-30 07:12

    Yes, you can npm install to download the full repository into node_modules. This will be directly from the repository's host, rather than via npm, though. See the npm install docs for more information.

提交回复
热议问题