React firebase api - .a.auth is not a function
up vote
1
down vote
favorite
I did a research but found that problem only in node.js context, or react context but from a long time ago, and guys say that upgrading their firebase helped. Mine was installed just last month.
Basically I'm using React with firebase api, and I this code:
firebase.auth().signInWithEmailAndPassword('an email', 'a password);
Throws the following error:
TypeError: WEBPACK_IMPORTED_MODULE_2__firebase.a.auth is not a function
Of course I'm importing firebase:
import firebase from '../../firebase';
All the other firebase commands work just fine.
Has anyone had an experience with that problem using react.js ?
Thanks a lot in advance
reactjs firebase
add a comment |
up vote
1
down vote
favorite
I did a research but found that problem only in node.js context, or react context but from a long time ago, and guys say that upgrading their firebase helped. Mine was installed just last month.
Basically I'm using React with firebase api, and I this code:
firebase.auth().signInWithEmailAndPassword('an email', 'a password);
Throws the following error:
TypeError: WEBPACK_IMPORTED_MODULE_2__firebase.a.auth is not a function
Of course I'm importing firebase:
import firebase from '../../firebase';
All the other firebase commands work just fine.
Has anyone had an experience with that problem using react.js ?
Thanks a lot in advance
reactjs firebase
Double check whether the path is correct. Also what are you exporting from that file? Share Firebase file code for better assistance
– Hemadri Dasari
Nov 10 at 4:34
1
Hey mate thanks I was stupid not to use import "firebase/auth" in the firebase file. Thanks a lot you really helped me
– sir-haver
Nov 10 at 23:37
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I did a research but found that problem only in node.js context, or react context but from a long time ago, and guys say that upgrading their firebase helped. Mine was installed just last month.
Basically I'm using React with firebase api, and I this code:
firebase.auth().signInWithEmailAndPassword('an email', 'a password);
Throws the following error:
TypeError: WEBPACK_IMPORTED_MODULE_2__firebase.a.auth is not a function
Of course I'm importing firebase:
import firebase from '../../firebase';
All the other firebase commands work just fine.
Has anyone had an experience with that problem using react.js ?
Thanks a lot in advance
reactjs firebase
I did a research but found that problem only in node.js context, or react context but from a long time ago, and guys say that upgrading their firebase helped. Mine was installed just last month.
Basically I'm using React with firebase api, and I this code:
firebase.auth().signInWithEmailAndPassword('an email', 'a password);
Throws the following error:
TypeError: WEBPACK_IMPORTED_MODULE_2__firebase.a.auth is not a function
Of course I'm importing firebase:
import firebase from '../../firebase';
All the other firebase commands work just fine.
Has anyone had an experience with that problem using react.js ?
Thanks a lot in advance
reactjs firebase
reactjs firebase
asked Nov 10 at 4:31
sir-haver
507
507
Double check whether the path is correct. Also what are you exporting from that file? Share Firebase file code for better assistance
– Hemadri Dasari
Nov 10 at 4:34
1
Hey mate thanks I was stupid not to use import "firebase/auth" in the firebase file. Thanks a lot you really helped me
– sir-haver
Nov 10 at 23:37
add a comment |
Double check whether the path is correct. Also what are you exporting from that file? Share Firebase file code for better assistance
– Hemadri Dasari
Nov 10 at 4:34
1
Hey mate thanks I was stupid not to use import "firebase/auth" in the firebase file. Thanks a lot you really helped me
– sir-haver
Nov 10 at 23:37
Double check whether the path is correct. Also what are you exporting from that file? Share Firebase file code for better assistance
– Hemadri Dasari
Nov 10 at 4:34
Double check whether the path is correct. Also what are you exporting from that file? Share Firebase file code for better assistance
– Hemadri Dasari
Nov 10 at 4:34
1
1
Hey mate thanks I was stupid not to use import "firebase/auth" in the firebase file. Thanks a lot you really helped me
– sir-haver
Nov 10 at 23:37
Hey mate thanks I was stupid not to use import "firebase/auth" in the firebase file. Thanks a lot you really helped me
– sir-haver
Nov 10 at 23:37
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
First check your path is correct, if is, try to delete the node_modules folder and make npm install
again !
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
add a comment |
up vote
0
down vote
Just posting the answer, maybe to help others. The simple solution (thanks to think-twice) is to import "firebase/auth". Here is an example of the Firebase file:
import firebase from 'firebase/app';
import 'firebase/storage';
import "firebase/database";
import "firebase/auth"
// Initialize Firebase
var config =
apiKey: "*********************",
authDomain: "...",
databaseURL: "...",
projectId: "....",
storageBucket: "....",
messagingSenderId: "..."
;
firebase.initializeApp(config);
const storage = firebase.storage();
export
storage, firebase as default
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
First check your path is correct, if is, try to delete the node_modules folder and make npm install
again !
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
add a comment |
up vote
0
down vote
First check your path is correct, if is, try to delete the node_modules folder and make npm install
again !
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
add a comment |
up vote
0
down vote
up vote
0
down vote
First check your path is correct, if is, try to delete the node_modules folder and make npm install
again !
First check your path is correct, if is, try to delete the node_modules folder and make npm install
again !
answered Nov 10 at 17:30
Tibere Prs
12
12
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
add a comment |
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
Thanks Tibere PRS
– sir-haver
Nov 10 at 23:38
add a comment |
up vote
0
down vote
Just posting the answer, maybe to help others. The simple solution (thanks to think-twice) is to import "firebase/auth". Here is an example of the Firebase file:
import firebase from 'firebase/app';
import 'firebase/storage';
import "firebase/database";
import "firebase/auth"
// Initialize Firebase
var config =
apiKey: "*********************",
authDomain: "...",
databaseURL: "...",
projectId: "....",
storageBucket: "....",
messagingSenderId: "..."
;
firebase.initializeApp(config);
const storage = firebase.storage();
export
storage, firebase as default
add a comment |
up vote
0
down vote
Just posting the answer, maybe to help others. The simple solution (thanks to think-twice) is to import "firebase/auth". Here is an example of the Firebase file:
import firebase from 'firebase/app';
import 'firebase/storage';
import "firebase/database";
import "firebase/auth"
// Initialize Firebase
var config =
apiKey: "*********************",
authDomain: "...",
databaseURL: "...",
projectId: "....",
storageBucket: "....",
messagingSenderId: "..."
;
firebase.initializeApp(config);
const storage = firebase.storage();
export
storage, firebase as default
add a comment |
up vote
0
down vote
up vote
0
down vote
Just posting the answer, maybe to help others. The simple solution (thanks to think-twice) is to import "firebase/auth". Here is an example of the Firebase file:
import firebase from 'firebase/app';
import 'firebase/storage';
import "firebase/database";
import "firebase/auth"
// Initialize Firebase
var config =
apiKey: "*********************",
authDomain: "...",
databaseURL: "...",
projectId: "....",
storageBucket: "....",
messagingSenderId: "..."
;
firebase.initializeApp(config);
const storage = firebase.storage();
export
storage, firebase as default
Just posting the answer, maybe to help others. The simple solution (thanks to think-twice) is to import "firebase/auth". Here is an example of the Firebase file:
import firebase from 'firebase/app';
import 'firebase/storage';
import "firebase/database";
import "firebase/auth"
// Initialize Firebase
var config =
apiKey: "*********************",
authDomain: "...",
databaseURL: "...",
projectId: "....",
storageBucket: "....",
messagingSenderId: "..."
;
firebase.initializeApp(config);
const storage = firebase.storage();
export
storage, firebase as default
answered Nov 10 at 23:40
sir-haver
507
507
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236009%2freact-firebase-api-a-auth-is-not-a-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Double check whether the path is correct. Also what are you exporting from that file? Share Firebase file code for better assistance
– Hemadri Dasari
Nov 10 at 4:34
1
Hey mate thanks I was stupid not to use import "firebase/auth" in the firebase file. Thanks a lot you really helped me
– sir-haver
Nov 10 at 23:37