A very thin wrapper around PTYs and processes.
const { Pty } = require('@replit/ruspty');
const pty = new Pty({
command: '/bin/sh',
args: [],
envs: {},
size: { rows: 24, cols: 80 },
onExit: (...result) => {
// TODO: Handle process exit.
},
});
const read = pty.read;
const write = pty.write;
read.on('data', (chunk) => {
// TODO: Handle data.
});
write.write('echo hello\n');npm installnpm run buildnpm run test
Following "Publish It" section from napi-rs docs:
git clean -f && npm install && npm run buildnpm version [major|minor|patch]- Send that as a Pull Request to GitHub. Ensure that the commit message consisting only of
x.y.z- this is how the CI decides to publish tonpm!
NPM_TOKEN is part of the repo secrets, generated like this.