JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 56
  • Score
    100M100P100Q59698F
  • License MIT

a cross-platform spawn replacement with promises

Package Exports

  • @geek/spawn
  • @geek/spawn/spawn.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@geek/spawn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Work in progresss

@geek/spawn

a cross-platform spawn replacement with promises

install

@geek/spawn Dependabot Status npm version

$ npm install @geek/spawn

usage

Asynchronous

var spawn = require('@geek/spawn').spawn;
spawn('echo', ['this is a test']);

Synchronous

var spawnSync = require('@geek/spawn').spawnSync;
spawnSync('echo', ['this is a test']);