laverdet / node-fibers

Fiber/coroutine support for v8 and node.
MIT License
3.56k stars 224 forks source link

3.1.0@latest' is not in the npm registry #431

Closed leopinzon closed 4 years ago

leopinzon commented 4 years ago

Hi guys, I am receiving the following message when trying to install the latest version:

$ npm i fibers@>= 3.1.0
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/3.1.0 - Not found
npm ERR! 404 
npm ERR! 404  '3.1.0@latest' is not in the npm registry.

I already installed the 3.1.0, but thought this can be a quick fix for the project. Thanks a lot, Best!

laverdet commented 4 years ago

You have a space after @>=. With this command you are asking npm install fibers@>= and also install a package named 3.1.0 which does not exist.

leopinzon commented 4 years ago

You're completely right! my bad. Thanks for the quick response.