New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@madgex/datadog-monitoring

Package Overview
Dependencies
Maintainers
15
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@madgex/datadog-monitoring - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

test/integration/constants.js

6

cli.js

@@ -38,7 +38,7 @@ #!/usr/bin/env node

function handle(signal) {
serverProcess.kill(signal);
process.kill(serverProcess.pid, signal);
}
process.on('SIGINT', handle);
process.on('SIGTERM', handle);
process.on('SIGINT', () => process.exit());
process.on('SIGTERM', () => process.exit());
process.on('exit', handle);

@@ -45,0 +45,0 @@ }

{
"name": "@madgex/datadog-monitoring",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -13,2 +13,3 @@ "main": "index.js",

"test": "jest",
"test:integration": "node test/integration/index.js",
"lint": "eslint ."

@@ -15,0 +16,0 @@ },

@@ -39,8 +39,8 @@ const dgram = require('dgram');

result = JSON.stringify(entry);
} catch (e) {
// Always output *something*, regardless of error
} finally {
if (echo) {
console.log(result);
}
} catch (e) {
// Always output *something*, regardless of error
} finally {
cb(null, result);

@@ -47,0 +47,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc