Files
node/doc/api
Jeremiah Senkpiel a0a6ff2ea5 doc: add some info on tty#setRawMode()
Partially taken from https://linux.die.net/man/3/cfmakeraw

A very simple test script:

```
if (process.argv[2] === 'raw')
  process.stdin.setRawMode(true)

process.stdin.on('data', (chunk) => {
  console.log(chunk)
  console.log(chunk.toString())
})
```

Refs: https://github.com/nodejs/node/pull/10037
PR-URL: https://github.com/nodejs/node/pull/10147
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2016-12-08 13:39:45 -05:00
..
2016-04-20 16:34:27 -07:00
2016-11-22 17:27:05 +01:00
2016-11-13 08:58:13 +01:00
2016-12-05 15:13:51 -08:00
2016-09-02 14:29:30 -04:00
2016-09-14 08:08:28 +02:00
2016-12-03 14:21:15 +01:00
2016-11-15 23:05:51 +01:00
2016-04-20 16:34:27 -07:00
2016-11-18 09:26:38 -08:00
2016-12-05 15:13:51 -08:00
2016-12-05 07:10:18 +01:00
2016-12-08 13:39:45 -05:00
2016-11-08 20:30:28 +01:00
2016-11-18 09:26:38 -08:00