summaryrefslogtreecommitdiff
path: root/doc/api/process.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/process.md')
-rw-r--r--doc/api/process.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index aa7477d3bc..7c156e9492 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -760,6 +760,7 @@ process.
```js
console.log(`Current directory: ${process.cwd()}`);
```
+
## process.debugPort
<!-- YAML
added: v0.7.2
@@ -771,6 +772,7 @@ The port used by Node.js's debugger when enabled.
```js
process.debugPort = 5858;
```
+
## process.disconnect()
<!-- YAML
added: v0.7.2
@@ -2199,6 +2201,7 @@ To check if a stream is connected to a [TTY][] context, check the `isTTY`
property.
For instance:
+
```console
$ node -p "Boolean(process.stdin.isTTY)"
true