/ptyw.js

Bindings to forkpty(3) for node.js.

Primary LanguageC++MIT LicenseMIT

ptyw.js Dependency Status Build Status

A fork of pty.js to have a more updated module.

API

spawn(command[, args, opts])

command
Type: String
args
Type: Array
opts
Type: Object

Example:

ptyw.spawn('java', ['-version'], {
  cols: 80,
  rows: 30,
  env: process.env
});