Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dtrace-provider

Package Overview
Dependencies
Maintainers
3
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dtrace-provider - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

2

package.json
{
"name": "dtrace-provider",
"version": "0.3.0",
"version": "0.3.1",
"description": "Native DTrace providers for node.js applications",

@@ -5,0 +5,0 @@ "keywords": [

@@ -18,5 +18,12 @@ #!/usr/bin/env node

var nodegyp = path.join(process.execPath,
//npm_execpath: '/usr/local/lib/node_modules/npm/bin/npm-cli.js',
var nodegyp = path.join(process.env.npm_execpath,
'..',
'node-gyp-bin',
'node-gyp');
if (!fs.existsSync(nodegyp))
nodegyp = path.join(process.execPath,
'..',
'..',
'lib',

@@ -29,2 +36,7 @@ 'node_modules',

if (!fs.existsSync(nodegyp)) {
console.error('cannot locate npm install');
return;
}
var spawn = require('child_process').spawn;

@@ -31,0 +43,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