
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
firestream
Advanced tools
var stream = firestream.create(url, { page: 10 });
stream
.map(function(ref) {
// optional mapping function
// return mapped value or a Promise with the mapped value
// @see https://github.com/jogabo/firenext
return db
.child('my-objects')
.child(ref.key())
.exec();
})
.on('value', function(arr) {
// array of all the values colleced so far
})
.on('readable', function() {
// time to read more data
})
.on('end', function() {
// reached the end
})
// read next 10 children
stream.read();
// when new data is added at the top, stream will fire a value event
firebase.child('0').set('zero');
// when data is updated, stream will fire a value event
firebase.child('1').set('one..');
// when data is moved, stream will fire a value event
firebase.child('1').setPriority(2);
// when data is removed, stream will fire a value event
firebase.child('1').remove();
stream
FAQs
firestream ==========
We found that firestream 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.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.