From 209b219b10cde8e225660baea3653645e8c0571c Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 8 Mar 2010 08:33:10 -0800 Subject: [PATCH] Add environmental varibles to help text --- src/node.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index f76e4267d7..315e6b4391 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1185,13 +1185,21 @@ static void ParseDebugOpt(const char* arg) { static void PrintHelp() { printf("Usage: node [options] script.js [arguments] \n" + "Options:\n" " -v, --version print node's version\n" " --debug[=port] enable remote debugging via given TCP port\n" " without stopping the execution\n" " --debug-brk[=port] as above, but break in script.js and\n" " wait for remote debugger to connect\n" " --cflags print pre-processor and compiler flags\n" - " --v8-options print v8 command line options\n\n" + " --v8-options print v8 command line options\n" + "\n" + "Enviromental variables:\n" + "NODE_PATH ':'-separated list of directories\n" + " prefixed to the module search path,\n" + " require.paths.\n" + "NODE_DEBUG Print additional debugging output.\n" + "\n" "Documentation can be found at http://nodejs.org/api.html" " or with 'man node'\n"); }