microsoft / node-pty

Fork pseudoterminals in Node.JS
Other
1.43k stars 232 forks source link

update README with new onData pattern #553

Closed Seanmclem closed 1 year ago

Seanmclem commented 1 year ago

See my idea here https://github.com/microsoft/node-pty/issues/552

Seems like the deprecated syntax needs updated from ptyProcess.on('data', function (data) { -> to -> ptyProcess.onData((data: any) => {