
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Firebase React bindings in a more declarative way. Just connect your component and you´re ready to go.
Firebase bindings to React. Just cofire a component and it's all set.
Using NPM:
npm install cofire
Using Yarn:
yarn add cofire
Wrap your components with cofire/Provider, after this all your nested components will have access to Firebase.
index.js
import React, { Component } from 'react'
import { Provider } from 'cofire'
// firebase settings
const config = {
apiKey: "<API_KEY>",
authDomain: "<AUTH_DOMAIN>",
databaseURL: "<DATABASE_URL>",
projectId: "<PROJECT_ID>",
storageBucket: "<STORAGE_BUCKET>",
messagingSenderId: "<MESSAGING_SENDER_ID>"
}
ReactDOM.render(
<Provider firebase={config}>
<App />
</Provider>, document.getElementById('root'));
On the component that you want to grab data from Firebase, connect your component with cofire HOC.
MyComponent.js
import React from 'react'
import { cofire } from 'cofire'
import { Link } from 'react-router-dom'
const MyComponent = ({ auth, data, saveDoc }) => {
return (
<div>
<ul>
{ data && !data.isLoading && data.data.map( item => <li key={item.id}>{item.id} . {item.name}</li>) }
</ul>
<button onClick={async() => await saveDoc({ name: 'Tulio '+new Date().getTime(), email: 'tuliofaria@gmail.com' })}>Save new document to Firestore</button>
</div>
)
}
export default cofire( props => {
let email = 'tuliofaria@gmail.com'
if(props.match.params.email){
email = props.match.params.email
}
return {
data: {
collection: 'users',
where: [
{
alias: 'email',
field: 'email',
op: '==',
value: email
}
]
}
}
}, ({ firestore }) => {
return {
saveDoc: async doc => await firestore.collection('users').add(doc)
}
})(MyComponent)
FAQs
Firebase React bindings in a more declarative way. Just connect your component and you´re ready to go.
We found that cofire demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.