Is it possible to install package from git repository from downloaded .zip file in npm?

前端 未结 2 628
萌比男神i
萌比男神i 2021-01-03 09:09

I\'ve downloaded manually master branch of repository via Download ZIP button on GitHub. Now, my question is:

Is it possible to install

2条回答
  •  情话喂你
    2021-01-03 09:59

    Try this :

    npm install ./package.zip
    

    Reference: https://docs.npmjs.com/cli/install

提交回复
热议问题