Environment variables and system properties can be read using the process module as below.
var process = require('process'); print(process.getEnvs()); // json object print(process.getEnv('PATH')); // string print(process.getProperties()); // json object print(process.getProperty('jaggery.home')); // string
No comments:
Post a Comment