×
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 helpnpm --version
Short version of the above commandnpm -vinstall/uninstall modules/packages
create & share modules
use packages created by other developers
manage dependencies & versioningcss-minify package must be installed globally npm install css-minify -gInstalling 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.