I am learning to npm/node and i found the field man which says that:
Specify either a single file or an array of filenames to put in place for the man program to find.
What is man program?
Can anyone explain in simple and easy words ?
I am learning to npm/node and i found the field man which says that:
Specify either a single file or an array of filenames to put in place for the man program to find.
What is man program?
Can anyone explain in simple and easy words ?
man
is the standard UNIX command line tool for reading software manuals. man
field is specific to *nix and remains unused on Windows, at least without additional measures.
It's expected that man
field contains relative path to man
formatted page.
man is a CLI (an interface on Linux terminal) to the on-line reference manuals, aka man-pages. The man-pages project is created for documenting user manual that is by default built into most Linux distributions, versions and most other Unix-like operating systems during installation.