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

custody-probe

Package Overview
Dependencies
Maintainers
25
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custody-probe - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

2

CHANGELOG.md
## Release History
* 0.2.0 Support `CUSTODY_PROC_DIR` variable
* 0.1.0 Initial release

2

package.json
{
"name": "custody-probe",
"version": "0.1.0",
"version": "0.2.0",
"description": "Report the state of child processes to custody.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -56,4 +56,8 @@ # custody-probe

## Configuration
By default, custody uses `/usr/local/var/custody` to store information and to enable probe->custody communication. You can override this directory by specifying the `CUSTODY_PROC_DIR` environment variable.
## Contributing
We welcome bug reports and feature suggestions!

@@ -6,3 +6,3 @@ const mkdirp = require('mkdirp');

// Keep these values in sync with those inside `custody`.
const PROC_DIR = '/usr/local/var/custody/services';
const PROC_DIR = process.env.CUSTODY_PROC_DIR || '/usr/local/var/custody/services';
const STATEFILE_EXT = '.statefile';

@@ -9,0 +9,0 @@ const STATES = {

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