Reputation: 23593
I have Node JS installed. How can I check if grunt is installed? Is it installed globably or does it reside in a specific folder?
For instance, node -v
will tell me I have v0.10.33
installed but I cant find any similar commands for Grunt.
Upvotes: 11
Views: 16411
Reputation: 603
You can check the Grunt version by using grunt --version
or grunt -V
(uppercase 'V')
Grunt command line interface (CLI) options
Upvotes: 15