
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
fork-events
Advanced tools
Example of gulp serve task with fork-events instead of nodemon
gulp.task('serve', function() {
var server = ForkEvents.fork('.'); // Your server script
server.on('started', function(e) {
if (e.reforked) {
browserSync.reload({ stream: false });
} else {
browserSync.init({
notify: false,
port: 8080,
proxy: 'http://localhost:8001' // HAPI server
});
}
});
gulp.watch(['ff-api/lib/controllers/**/*'], server.refork);
gulp.watch(['ff-web/lib/assets/**/*'], ['web:assets']);
gulp.watch(['ff-web/lib/controllers/**/*'], server.refork);
gulp.watch(['ff-web/lib/views/**/*'], browserSync.reload);
});
On hapi side you just need to add 3 lines of code to start callback
// index.js
Glue.compose(manifest, {relativeTo: Path.join(__dirname, '.')}, function (err, server) {
server.start(function () {
// This 3 lines
if (process.send) {
process.send({event: 'started'});
}
});
});
FAQs
Turns messages to events
The npm package fork-events receives a total of 3 weekly downloads. As such, fork-events popularity was classified as not popular.
We found that fork-events 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.