diff --git a/doc/api/process.md b/doc/api/process.md index 44b48b4f4b6f22..405d6296353f88 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1439,13 +1439,26 @@ added: v0.1.16 * {string} The `process.platform` property returns a string identifying the operating -system platform on which the Node.js process is running. For instance -`'darwin'`, `'freebsd'`, `'linux'`, `'sunos'` or `'win32'` +system platform on which the Node.js process is running. + +Currently possible values are: + +* `'aix'` +* `'darwin'` +* `'freebsd'` +* `'linux'` +* `'openbsd'` +* `'sunos'` +* `'win32'` ```js console.log(`This platform is ${process.platform}`); ``` +The value `'android'` may also be returned if the Node.js is built on the +Android operating system. However, Android support in Node.js +[is experimental][Supported platforms]. + ## process.ppid