razorframe
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -173,3 +173,9 @@ const { EventEmitter } = require('events'); | ||
write(MSG); | ||
if (!MSG.error) io.emit(MSG.eventOut, MSG.contents); | ||
if (!MSG.error) { | ||
if (MSG.contents === 'service') { | ||
io.emit(MSG.eventOut, `service worker: ${process.pid}`); | ||
} else { | ||
io.emit(MSG.eventOut, MSG.contents); | ||
} | ||
} | ||
}); | ||
@@ -176,0 +182,0 @@ |
{ | ||
"name": "razorframe", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Empowering real-time databases in Node.js", | ||
@@ -5,0 +5,0 @@ "main": "./lib/Razorframe.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12266
257