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

前端 未结 5 887
滥情空心
滥情空心 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:25

    Running npm pack PACKAGE_NAME will download a tarball of any package on npm.

    To extract it, just run tar -xzf DOWNLOADED_FILE.tgz

    Example:

    npm pack react
    

    then extract:

    tar -xzf react-16.6.3.tgz
    

提交回复
热议问题