You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/workers/runtime-apis/nodejs/process.mdx
+2-17Lines changed: 2 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ were set previously and will cause unexpected behavior for other Workers running
58
58
same isolate. Specifically, it would cause inconsistency with the `process.env` object when
59
59
accessed via named imports.
60
60
61
-
```js
61
+
````js
62
62
import * as process from 'node:process';
63
63
import { env } from 'node:process';
64
64
@@ -82,7 +82,7 @@ console.log(env["FOO"]); // Prints: bar
82
82
nextTick(() => {
83
83
console.log("next tick");
84
84
});
85
-
```
85
+
````
86
86
87
87
## Stdio
88
88
@@ -102,18 +102,3 @@ This ensures compatibility with inspector and structured logging outputs.
102
102
## Hrtime
103
103
104
104
While [`process.hrtime`](https://nodejs.org/docs/latest/api/process.html#processhrtimetime) high-resolution timer is available, it provides an inaccurate timer for compatibility only.
105
-
106
-
## Unsupported Features
107
-
108
-
The following `process` properties are currently entirely unsupported and return`undefined`:`binding`, `channel`, `connected`, `debugPort`, `dlopen`,
0 commit comments