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.
Library to simplify implementing standard app functionality when using Firebase (User/Presence Management, Object CRUD and Listing)
| Fireadmin organizes and simplifies usage of Firebase
FireAdmin is a Javascript Library built to simplify implementing standard app functionality when using Firebase (User/Presence Management, Object CRUD/ Listing/Counting).
FireAdmin is especially useful when you are trying to administer a Firebase data set (hence the name). Administration dashboards are a breeze thanks to functions like getOnlineUserCount()
that provide analytics data in simple and easy to understand calls.
index.html
:<script src="http://cdn.prue.io/fireadmin/0.0.4/fireadmin.min.js"></script>
<!-- Or the following for the latest version -->
<!-- <script src="http://cdn.prue.io/fireadmin/latest/fireadmin.min.js"></script> -->
or
Install through package managers:
npm install fireadmin --save
bower install fireadmin --save
var fa = new Fireadmin("https://<your-app>.firebaseio.com");
//Get count of users
fa.getUserCount().then(function(count){
console.log('Your app currently has ' + count + ' users.');
});
API Documentation is automatically generated with JSDoc and is included in this repo under dist/docs
if you would like to view a local version.
npm install
to install dev dependencies.npm start
to Serve and Open the dev environment.FAQs
Library to simplify implementing standard app functionality when using Firebase (User/Presence Management, Object CRUD and Listing)
The npm package fireadmin receives a total of 4 weekly downloads. As such, fireadmin popularity was classified as not popular.
We found that fireadmin 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.