Uncaught Error: Could not find module firebase-app/app
See original GitHub issueHello,
Just installed Emberfire on a new project using Ember-CLI v0.2.3 and got this error:
Uncaught Error: Could not find module firebase-app/app
I installed firebase with this command (as required by the v0.2.3)
ember install emberfire
I’m not sure how to fix this issue. Emberfire is working on my other app that use Ember-cli v0,2.2.
Issue Analytics
- State:
- Created 8 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
typescript error cannot find module 'firebase/app'
It seems that firebase 4.8.1 has changed its typescript typings. For now you can revert back to firebase 4.8.0 by running the following:...
Read more >Cannot find module 'firebase/app' - Angular apps stops ...
Build fails with error TS2307: Cannot find module 'firebase/app' . This issue forces me to use Firebase SDK v4.8.2 which has no typings ......
Read more >Cannot find module 'firebase/app' - Google Groups
I am getting the same error for those versions for firebase and @angular/fire. Any pointers would be appreciated. Thanks.
Read more >@firebase/app - npm
@firebase/app. This package coordinates the communication between the different Firebase components. This package is not intended for direct ...
Read more >cannot find module 'firebase' or its corresponding type ...
it's because the default import is from firebase/app and not firebase. Have a nice day :) Edit: Didn't see that you were using...
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
Stumbled upon this error today… basically you just need to restart ember server. No need to run
ember build
.In case someone stumbles upon this… I was getting this error after using Ember CLI v.1.13.13 to install Emberfire:
Could not find module 'emberfire/adapters/firebase'
I was able to resolve by stopping the local server and running
ember build
.When I restarted the local server the error went away.