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

前端 未结 4 2783
不知归路
不知归路 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:39

    It's not you, it's an already known issue, due to dependency problems.

    More details here https://github.com/remy/nodemon/issues/1210

    0 讨论(0)
  • 2020-12-02 02:47

    Official issue: https://github.com/npm/registry/issues/255

    Official status: https://status.npmjs.org/incidents/41zfb8qpvrdj

    Several packages including "require-from-string" are currently unavailable. We are aware of the issue and are working to restore the affected user and packages. Please do not attempt to republish packages, as this will hinder our progress in restoring them.

    Update from NPM:

    Resolved

    We apologize for the temporary unavailability of some packages. We will be publishing a comprehensive post-mortem update in the next few days.

    Posted Jan 06, 2018 - 23:14 UTC

    0 讨论(0)
  • 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
    
    0 讨论(0)
  • 2020-12-02 02:57

    Users are reporting that packages are being made available again. Try again and see if your issue is resolved.

    https://github.com/npm/registry/issues/255

    0 讨论(0)
提交回复
热议问题