Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

entorn

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

entorn

List and manage the variables system environment, and uses other extra features.

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Entorn

List and manages all system environment variables.

Installation

$ npm install entorn --save

Usage



console.log("List all environment variables:" + entorn.list());

console.log("CPUs: ", entorn.cpus); // list of all CPU

console.log("Free memory: ", entorn.free);

console.log("Similary: ", entorn.similary("NODE")); // list of all variables similar environment

console.log("have java installed? " + entorn.hasJavaHome()); // true | false

console.log("where java is installed? " + entorn.getJavaHome()); // string dir folder java

console.log("What is the name of the user of this computer? ", entorn.User()); // username of the session

console.log("You have it set android? ", entorn.hasAndroidHome()); // true | false

console.log("has axs?", entorn.has("axs")); // true | false

console.log("or, has SESSION?", entorn.has("SESSION")); // true | false

console.log("get NODE_PATH", entorn.get("NODE_PATH")); // string dir folder

//console.log("Set: ", entorn.set("YOUR_ENV_VAR", "ANY VALUES"));

console.log("CPUs: ", entorn.cpus);

console.log("Free memory: ", entorn.free);

console.log("Network Interfaces: ", entorn.networkInterfaces);

console.log("or Network Interfaces: ", entorn.ni);

console.log("Platform: ", entorn.platform); // 'aix', 'darwin', 'freebsd', 'linux', 'openbsd', 'sunos', 'win32'

console.log("Total memory: ", entorn.totalmem);

console.log("Current folder: ", entorn.current); // Returns the current working directory of the Node.js process.  Similiar to command "pwd" on bash linux

console.log("Version nodejs: ", entorn.version);

console.log("or Version nodejs: ", entorn.v);

console.log("Detail Nodejs: ", entorn.vdetail);

/**
 * [listmodules listing nodemodules globals]
 */
entorn.listmodules(function (err, list) {
  if (err) console.log("ERROR", err);
  console.log("Listing nodemodules globals:", list);
});

/**
 * [exec command in the shell or cmd]
 */
entorn.exec("atom .", function (err, stdout) {
  if (err) console.log("ERROR", err);
  console.log("Result:", stdout);
});

Keywords

FAQs

Package last updated on 20 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc