Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
express-firebase
Advanced tools
It helps to manage your firebase api without worry to much of the code
A very good helper library for connecting react js applications to firebase. It is basically wrapper of all firebase functions
yarn add express-firebase
or
npm install --save express-firebase
import expressFirebase from 'express-firebase';
const firebaseConfig = {
apiKey: 'xxxxxxxxxxxxxxxxx',
authDomain: 'xxxxxxxxxxxxxxxxx',
databaseURL: 'xxxxxxxxxxxxxxxxx',
projectId: 'xxxxxxxxxxxxxxxxx',
storageBucket: 'xxxxxxxxxxxxxxxxx',
messagingSenderId: 'xxxxxxxxxxxxxxxxx',
appId: 'xxxxxxxxxxxxxxxxx',
};
expressFirebase.connect(firebaseConfig);
await expressFirebase.post('/add',
{name:'I love express firebase',version:'1.0.0'});
const response = await expressFirebase.get('/add');
await expressFirebase.put('/add',
{name:'I Love Express Firebase Updated',version:'1.0.1'});
await expressFirebase.delete('/add','xxxxxxxxxxxxxxx');
const imageUrl = await expressFirebase.uploadFile('imageName','image data');
const response = await expressFirebase.login('abc@gmail.com','password');
const signup = await expressFirebase.signup('abc@gmail.com','password');
const response = await expressFirebase.logout();
const response = await expressFirebase.getCurrentUser();
const response = await expressFirebase.isLoggedIn();
const response = await expressFirebase.sendEmailVerification();
const response = await expressFirebase.loginWithGoogle();
const response = await expressFirebase.loginWithGithub();
FAQs
It helps to manage your firebase api without worry to much of the code
The npm package express-firebase receives a total of 0 weekly downloads. As such, express-firebase popularity was classified as not popular.
We found that express-firebase 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.