summaryrefslogtreecommitdiff
path: root/doc/node.1
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-11-14 23:12:43 -0800
committerRyan Dahl <ry@tinyclouds.org>2010-11-14 23:12:43 -0800
commitd7e7161b27f55f5ae1e7f3323c0795c2c70b4797 (patch)
treeb9380fc0cf999066029d9fa8c568d309cc4915ab /doc/node.1
parent9996b459e15581fcbff22de2f9a2b5173fc2ba5f (diff)
downloadandroid-node-v8-d7e7161b27f55f5ae1e7f3323c0795c2c70b4797.tar.gz
android-node-v8-d7e7161b27f55f5ae1e7f3323c0795c2c70b4797.tar.bz2
android-node-v8-d7e7161b27f55f5ae1e7f3323c0795c2c70b4797.zip
Add small crappy manpage (please improve)
Diffstat (limited to 'doc/node.1')
-rw-r--r--doc/node.162
1 files changed, 62 insertions, 0 deletions
diff --git a/doc/node.1 b/doc/node.1
new file mode 100644
index 0000000000..9defd48c88
--- /dev/null
+++ b/doc/node.1
@@ -0,0 +1,62 @@
+.TH NODE.JS "1" "2010" "" ""
+
+
+.SH "NAME"
+node \- Server-side JavaScript
+
+.SH SYNOPSIS
+
+
+.B node
+[
+.B \-v
+]
+[
+.B \-\-debug
+|
+.B \-\-debug-brk
+]
+[
+.B \-\-v8-options
+]
+.br
+ [
+.B \-e
+.I command
+|
+.I script.js
+]
+[
+.I arguments
+]
+
+Execute without arguments to start the REPL.
+
+
+.SH DESCRIPTION
+
+Node is a set of libraries for javascript which allows
+it to be used outside of the browser. It is primarally
+focused on creating simple, easy to build network clients
+and servers.
+
+
+.SH ENVIRONMENT VARIABLES
+
+.IP NODE_PATH
+':'-separated list of directories prefixed to the module search path,
+require.paths.
+
+.IP NODE_MODULE_CONTEXTS
+If set to 1 then modules will load in their own global contexts.
+
+.IP NODE_DISABLE_COLORS
+If set to 1 then colors will not be used in the REPL.
+
+.SH RESOURCES AND DOCUMENTATION
+
+See the website for documentation http://nodejs.org/
+
+Mailing list: http://groups.google.com/group/nodejs
+
+IRC: irc.freenode.net #node.js