-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add gruntjs installation howto #14
Comments
What does grunt do? |
It's a build task runner, like Apache Ant. It automates things like linting and minifying JS/CSS, moving files around for dev/production setups, etc. |
Is it the kind of thing where there are a bunch of tools in the Node ecosystem right now that do this, or is Grunt the one main one? |
Grunt is the major one I'm aware of that has been around awhile. Gulp is another one that is more recent and has gotten attention as a possible Grunt replacement. FWIW here's the grunt/gulp code mentions: And repo activity: Here's a recent post on comparisons of task runners in the node world. |
This howto can be brief and look like this:
sudo npm install -g grunt-cli
. Enter your system password and hit return.The
grunt
command will now be available globally on your system.The text was updated successfully, but these errors were encountered: