Results: 44
Shows
help
page with some useful information about how to use
npm
npm
Same as the above command
npm help
Shows the current version of NPM
npm --version
Short version of the above command
npm -v
what is NPM used for
install/uninstall modules/packages
create & share modules
use packages created by other developers
manage dependencies & versioning
First
css-minify
package must be installed
globally
npm install css-minify -g
Installing globally is necessary. Before minify command is run,
css-dist
directory must be created, where the output will be saved. The command:
css-minify -f css/d1.css
will minify the specified .css file.
Results: 44