×
Clear all filters including search bar
Valeri Tandilashvili's NPM Notes
help
page with some useful information about how to use npm
npm
Same as the above commandnpm help
npm --version
Short version of the above commandnpm -v
install/uninstall modules/packages
create & share modules
use packages created by other developers
manage dependencies & versioning
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.