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

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

    Just run the command

    npm view [package name] dist.tarball
    

    It will return a tar url.

提交回复
热议问题