答案1
不是man nodejs
,但是man 1 node
。并且它将默认存在。
它将使用常规安装方法(例如sudo make install
)为您安装,因为tools/install.py
从中调用的Makefile
将处理它:
if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
action(['doc/node.1'], 'man/man1/')
else:
action(['doc/node.1'], 'share/man/man1/')
换句话说,它会node.1
在 中为您安装/usr/share/man/man1/
。
要直接从源读取手册页,您可以执行以下操作:
man /path/to/nodejssource/doc/node.1