Requested Node 8 does not match with my Node 12
See original GitHub issue[REQUIRED] Environment info
firebase-tools: 7.0.2
Platform: macOS
[REQUIRED] Test case:
run firebase serve
on terminal
[REQUIRED] Steps to reproduce:
-
use the source code from https://angulardart.dev/guide/forms#give-visual-feedback-based-on-control-state
-
follow steps on https://console.firebase.google.com/u/0/project/icasaa-d46fe/overview up to
firebase init
, then dofirebase serve
[REQUIRED] Expected behavior:
no issues
[REQUIRED] Actual behavior:
Your requested “node” version “8” doesn’t match your global version “12”
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
node.js - how to change node version? "Your requested "node ...
The message is not indicating an error. It's just letting you know that your package.json declares a target node version of 8, but...
Read more >Troubleshoot Tableau Server Install and Upgrade
Many Tableau Server issues can be addressed with some basic steps: Make sure there is enough disk space on each computer running Tableau...
Read more >Node.js Runtime Environment - App Engine - Google Cloud
The Node.js runtime is the software stack responsible for installing your web service's code and its dependencies and running your service. The Node.js ......
Read more >Top 10 Most Common Node.js Developer Mistakes - Toptal
For example, a request from Node.js to the database engine to fetch some document is what allows Node.js to focus on some other...
Read more >CommonJS modules | Node.js v19.3.0 Documentation
Careful planning is required to allow cyclic module dependencies to work correctly within an application. File modules#. If the exact filename is not...
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 Free
Top 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
This is expected and just a warning to let you know that you’ve set
{engines: {node: 8}}
infunctions/package.json
. If you’re concerned, you can usenvm
to install an older version of Node, but realistically it probably wont matter.Sorry I think Abe meant for you to downgrade to either Node 8 or 10 not upgrade to 12. Firebase does not yet support Node 12.
On Wed, Jul 10, 2019, 5:06 PM Henry Poit notifications@github.com wrote: