Do I have to use firebase-redux firestore-redux to connect redux to firebaseWhy use Redux over Facebook Flux?What's the '@' (at symbol) in the Redux @connect decorator?Why do we need middleware for async flow in Redux?How to dispatch a Redux action with a timeout?How to reset the state of a Redux store?What is the difference between redux-thunk and redux-promise?What is mapDispatchToProps?What's the difference between Cloud Firestore and the Firebase Realtime Database?why use redux with firebase?React/Redux with Firebase getting compile error, Module not found: Can't resolve 'debounce'
Does the problem of P vs NP come under the category of Operational Research?
How does Rust's 128-bit integer `i128` work on a 64-bit system?
Who's behind community AMIs on Amazon EC2?
Being told my "network" isn't PCI compliant. I don't even have a server! Do I have to comply?
How to avoid a lengthy conversation with someone from the neighborhood I don't share interests with
What is Albrecht Dürer's Perspective Machine drawing style?
Protect a 6 inch air hose from physical damage
Where do I keep track of sorcery points on a character sheet?
Will medical institutions reject an applicant based on being 28 years of age?
What is the reason behind water not falling from a bucket at the top of loop?
Can birds evolve without trees?
Does the use of a new concept require a prior definition?
UX writing: When to use "we"?
What's the proper way of indicating that a car has reached its destination during a dialogue?
What is the difference between 2/4 and 4/4 when it comes the accented beats?
How to get maximum number that newcount can hold?
How did Biff return to 2015 from 1955 without a lightning strike?
Accurately recalling the key - can everyone do it?
Why are sugars in whole fruits not digested the same way sugars in juice are?
How do I safety check that there is no light in Darkroom / Darkbag?
Can I shorten this filter, that finds disk sizes over 100G?
Any information about the photo with Army Uniforms
Should I take up a Creative Writing online course?
Why do player start with fighting for the corners in go?
Do I have to use firebase-redux firestore-redux to connect redux to firebase
Why use Redux over Facebook Flux?What's the '@' (at symbol) in the Redux @connect decorator?Why do we need middleware for async flow in Redux?How to dispatch a Redux action with a timeout?How to reset the state of a Redux store?What is the difference between redux-thunk and redux-promise?What is mapDispatchToProps?What's the difference between Cloud Firestore and the Firebase Realtime Database?why use redux with firebase?React/Redux with Firebase getting compile error, Module not found: Can't resolve 'debounce'
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I already managed to connect firebase and firestore with redux without using firebase-redux and firestore-redux packages. What differences does it make to using them?
reactjs firebase redux
add a comment |
I already managed to connect firebase and firestore with redux without using firebase-redux and firestore-redux packages. What differences does it make to using them?
reactjs firebase redux
add a comment |
I already managed to connect firebase and firestore with redux without using firebase-redux and firestore-redux packages. What differences does it make to using them?
reactjs firebase redux
I already managed to connect firebase and firestore with redux without using firebase-redux and firestore-redux packages. What differences does it make to using them?
reactjs firebase redux
reactjs firebase redux
asked Mar 27 at 0:17
user6935527
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Those packages are their own opinionated integrations of the two libraries. If you agree with their opinions then they'll save you setup time, if you've already set things up and don't need them then adding them is unecessary.
1
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f55368010%2fdo-i-have-to-use-firebase-redux-firestore-redux-to-connect-redux-to-firebase%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Those packages are their own opinionated integrations of the two libraries. If you agree with their opinions then they'll save you setup time, if you've already set things up and don't need them then adding them is unecessary.
1
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
add a comment |
Those packages are their own opinionated integrations of the two libraries. If you agree with their opinions then they'll save you setup time, if you've already set things up and don't need them then adding them is unecessary.
1
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
add a comment |
Those packages are their own opinionated integrations of the two libraries. If you agree with their opinions then they'll save you setup time, if you've already set things up and don't need them then adding them is unecessary.
Those packages are their own opinionated integrations of the two libraries. If you agree with their opinions then they'll save you setup time, if you've already set things up and don't need them then adding them is unecessary.
answered Mar 28 at 12:01
Josh PittmanJosh Pittman
2,3031 gold badge15 silver badges32 bronze badges
2,3031 gold badge15 silver badges32 bronze badges
1
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
add a comment |
1
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
1
1
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
Thanks Josh. I wasn’t sure if the packages were original firebase and necessary for running firebase on redux. Thanks for clarification
– user6935527
Mar 28 at 22:40
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
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.
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%2f55368010%2fdo-i-have-to-use-firebase-redux-firestore-redux-to-connect-redux-to-firebase%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