mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
Add access to user environment via ENV
This commit is contained in:
@@ -88,6 +88,8 @@ Returns the current working directory of the process.
|
||||
+ARGV+ ::
|
||||
An array containing the command line arguments.
|
||||
|
||||
+ENV+ ::
|
||||
An object containing the user environment. See environ(7).
|
||||
|
||||
+__filename+ ::
|
||||
The filename of the script being executed.
|
||||
|
||||
15
src/node.cc
15
src/node.cc
@@ -378,13 +378,26 @@ Load (int argc, char *argv[])
|
||||
|
||||
node_obj->Set(String::NewSymbol("version"), String::New(NODE_VERSION));
|
||||
|
||||
int i,j;
|
||||
Local<Array> arguments = Array::New(argc);
|
||||
for (int i = 0; i < argc; i++) {
|
||||
for (i = 0; i < argc; i++) {
|
||||
Local<String> arg = String::New(argv[i]);
|
||||
arguments->Set(Integer::New(i), arg);
|
||||
}
|
||||
global_obj->Set(String::NewSymbol("ARGV"), arguments);
|
||||
|
||||
Local<Object> env = Object::New();
|
||||
for (i = 0; environ[i]; i++) {
|
||||
for (j = 0; environ[i][j] && environ[i][j] != '='; j++) { ; }
|
||||
Local<String> field = String::New(environ[i], j);
|
||||
Local<String> value = Local<String>();
|
||||
if (environ[i][j] == '=') {
|
||||
value = String::New(environ[i]+j+1);
|
||||
}
|
||||
env->Set(field, value);
|
||||
}
|
||||
global_obj->Set(String::NewSymbol("ENV"), env);
|
||||
|
||||
NODE_SET_METHOD(node_obj, "compile", compile);
|
||||
NODE_SET_METHOD(node_obj, "reallyExit", node_exit);
|
||||
NODE_SET_METHOD(node_obj, "cwd", Cwd);
|
||||
|
||||
Reference in New Issue
Block a user