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

sb-exec

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sb-exec

Process spawning APIs beautified

  • 2.0.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Exec

Node's Process spawning APIs beautified

Installation

npm install --save sb-exec

API

type $Options = {
  timeout?: number | Infinity,
  stream?: 'stdout' | 'stderr'  | 'both',
  env: Object,
  stdin?: ?string,
  local?: {
    directory: string,
    prepend?: boolean
  },
  throwOnStdErr?: boolean = true,
  allowEmptyStderr?: boolean = false,
  ignoreExitCode?: boolean
} // Also supports all options of child_process::spawn
export function exec(filePath: string, parameters: array, options: $Options)
export function execNode(filePath: string, parameters: array, options: $Options)

Explanation

options.local

options.local is a way of adding locally installed npm bins to PATH of the process being spawned. Please have a look at the program structure below.

If the control of your program is in lib/index.js and you pass that directory to this module ( like { local: { directory: __dirname } } ), then the flow executable in node_modules/.bin/flow will automatically be added to PATH.

If the control of your program is in node_modules/flow/index.js and you pass that directory as the local directory, both the flow and freedom executables will be available to the program being executed.

options.local.prepend determines the priority of the local bins, if set to true, local ones will be prioritized over global ones, otherwise they'll be treated as a fallback.


.
├── lib
│   └── index.js
└── node_modules
    ├── .bin
    │   └── flow
    └── flow
        ├── index.js
        └── node_modules
            ├── .bin
            │   └── freedom
            └── freedom
                └── index.js

License

This project is licensed under the terms of MIT License, see the LICENSE file for more info

Keywords

FAQs

Package last updated on 07 Jun 2016

Did you know?

Socket

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.

Install

Related posts

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