nodemon install error “No valid versions available for timed-out”

前端 未结 4 2819
不知归路
不知归路 2020-12-02 02:24

I am getting this error when trying to install nodemon in a brand new node project.

I\'ve created a blank folder named my-project then, inside it, I\'ve executed to

4条回答
  •  生来不讨喜
    2020-12-02 02:53

    timed-out is a npm package that is apparently missing, as of the last day, or hour, or minutes (I don't know the time span).

    /Users/Stan ==> npm install timed-out -g

    npm ERR! code ENOVERSIONS
    npm ERR! No valid versions available for timed-out
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     /Users/Stan/.npm/_logs/2018-01-06T20_26_40_854Z-debug.log
    

    Now it is working.

    /Users/Stan ==> npm install timed-out -g

    + timed-out@4.0.1
    added 1 package in 1.306s
    

提交回复
热议问题