Evanss
Evanss

Reputation: 23593

Check if grunt is installed?

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

Answers (1)

Venrix
Venrix

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

Related Questions