Grunt is a JavaScript Task Runner, used for automation of repetitive tasks like minification, compilation, unit testing, linting, etc.
In order to get started, you'll want to install Grunt's command line interface (CLI) globally.
npm install -g grunt-cli
Preparing a new Grunt project:
A typica...