Un objeto de proceso es un objeto global, por lo que se puede acceder a él desde cualquier lugar. Como es una biblioteca predefinida, no tenemos que descargarla a nuestro sistema globalmente.
requisitos previos:
- Conocimientos básicos de Node
- Node.js instalado (versión 12+)
- NPM instalado (versión 6+)
Módulo Requerido: Puede incluir el módulo usando el siguiente código:
var process = require('process');
Nota: es un objeto global, por lo que no es necesario instalarlo explícitamente.
Ejemplo 1: Cree un archivo JavaScript index.js y escriba el siguiente código:
index.js
// Including the module into out project var process = require('process'); // It will return the current working directory console.log('this is the working directory --> ' + process.cwd()); // It will return the version of process we are using console.log('this is the process version --> ' + process.version); // It will return the type of OS we are using at that time. console.log('current OS we are using --> ' + process.platform);
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Ejemplo 2: Cree un archivo JavaScript index.js y escriba el siguiente código:
index.js
// Including the module into out project var process = require('process'); // It will return the Feature Object console.log('Feature Property: ', process.features);
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Feature Property: { inspector: true, debug: false, uv: true, ipv6: true, tls_alpn: true, tls_sni: true, tls_ocsp: true, tls: true, cached_builtins: true }
Referencia: https://nodejs.org/api/process.html#process_process
Publicación traducida automáticamente
Artículo escrito por rahulmahajann y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA