I have downloaded node.js
tarball from its website, and now I would like install the manpage that comes with it so that I can view it by typing:
man nodejs
How can I do this?
I have downloaded node.js
tarball from its website, and now I would like install the manpage that comes with it so that I can view it by typing:
man nodejs
How can I do this?
It's not man nodejs
, but man 1 node
. And it will be there by default.
It will be installed for you with the regular installation method (e.g. sudo make install
) as the tools/install.py
called from the Makefile
will take care of it:
if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
action(['doc/node.1'], 'man/man1/')
else:
action(['doc/node.1'], 'share/man/man1/')
In other words, it installs node.1
for you in /usr/share/man/man1/
.
To read the manpage directly from the source, you can do:
man /path/to/nodejssource/doc/node.1
man 1 node
syntax. I voted to delete my answer.
– chaskes
Jan 18 '13 at 21:24
In addition to the man page, Node sets up its own help server.
npm help <term>
or to get started:
npm help npm
The documentation is also online at: Node.js API docs
node.1
is the exact file I want to link to man
so that it will see it when I type man node
– Patryk
Jan 18 '13 at 21:21
npm help
provide a lot more, but the node
command also features a manpage, just for the convenience.
– gertvdijk
Jan 18 '13 at 21:21
make doc
command as suggested in the README.md ? – gertvdijk Jan 18 '13 at 21:07doc/node.1
. – gertvdijk Jan 18 '13 at 21:09