Requiring NPM
See original GitHub issueAre there any plans on not strictly requiring npm
? Wanted to add some enhancements to cerebro, but yarn install
fails with AssertionError: Current node version is not supported for development
because (what I assume) NPM is required.
Would be cool to have the option to use the preferred package manager.
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
require - npm
Node's require () is the de facto javascript dependency statement. npm is the de facto javascript module manager. require brings both of them...
Read more >requiring - npm
Requiring modules sync or async, existent or non. ... Start using requiring in your project by running `npm i requiring`.
Read more >required - npm
Reads the filename and traverses all the dependencies. The return result to callback is (err, details) where details is an array of dependencies ......
Read more >requires - npm
Super simple require parser, trades correctness for speed. If you do weird things like concat strings for require()s this will fail.
Read more >require-npm
Require NPM is a lightweight library invented to download, cache, and reuse NPM modules. It's intended for Require NPM to be used in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Cool, in that case perhaps you should consider to loosen this node/npm version restriction, allow node 6+ to be used, just add the
cd app && npm run rebuild
to theInstall
section of your readme.Personally this restriction (node == v6) is what held me back from setting up development environment, I have node v7 and I didn’t want to spend time looking for a way to get node v6 on my machine. But like you said, node v7 can actually be used, and it works just fine.
Ok, fixed in #67