MCPcopy Create free account
hub / github.com/chjj/pty.js

github.com/chjj/pty.js @v0.3.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.3.1 ↗ · + Follow
32 symbols 55 edges 10 files 7 documented · 22% updated 7y ago★ 86776 open issues

Browse by type

Functions 27 Types & classes 5
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

pty.js

forkpty(3) bindings for node.js. This allows you to fork processes with pseudo terminal file descriptors. It returns a terminal object which allows reads and writes.

This is useful for:

  • Writing a terminal emulator.
  • Getting certain programs to think you're a terminal. This is useful if you need a program to send you control sequences.

Example Usage

var pty = require('pty.js');

var term = pty.spawn('bash', [], {
  name: 'xterm-color',
  cols: 80,
  rows: 30,
  cwd: process.env.HOME,
  env: process.env
});

term.on('data', function(data) {
  console.log(data);
});

term.write('ls\r');
term.resize(100, 40);
term.write('ls /\r');

console.log(term.process);

Todo

  • Add tcsetattr(3), tcgetattr(3).
  • Add a way of determining the current foreground job for platforms other than Linux and OSX/Darwin.

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

Copyright (c) 2012-2015, Christopher Jeffrey (MIT License).

Core symbols most depended-on inside this repo

Shape

Function 26
Class 5
Method 1

Languages

C++72%
TypeScript28%

Modules by API surface

src/unix/pty.cc14 symbols
src/win/pty.cc9 symbols
lib/pty.js5 symbols
lib/pty_win.js4 symbols

For agents

$ claude mcp add pty.js \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page