Difference between revisions of "Grunt (JavaScript)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
'''Grunt''' is a [[JavaScript]] task runner: an automation tool for performing repetitive tasks like minification, compilation, [[unit testing]], linting, etc.
 
'''Grunt''' is a [[JavaScript]] task runner: an automation tool for performing repetitive tasks like minification, compilation, [[unit testing]], linting, etc.
  
It depends on Node.js and npm.
+
It depends on [[Node.js]] and [[npm (software)|npm]].
  
 
The Grunt ecosystem currently has over five thousand plugins available.
 
The Grunt ecosystem currently has over five thousand plugins available.
  
Users include Adobe Systems, jQuery, Twitter, Mozilla, Bootstrap, Cloudant, Opera, WordPress, Walmart, Victoria's Secret, and Microsoft.
+
Users include [[Adobe Systems]], [[jQuery]], Twitter, Mozilla, [[Bootstrap (framework)]], Cloudant, Opera, [[WordPress]], Walmart, Victoria's Secret, and [[Microsoft]].
  
 
== See also ==
 
== See also ==
Line 11: Line 11:
 
* [[JavaScript]]
 
* [[JavaScript]]
 
* [[Node.js]]
 
* [[Node.js]]
 +
* [[npm (software)]]
 
* [[Unit testing]]
 
* [[Unit testing]]
  
Line 17: Line 18:
 
* [http://gruntjs.com/ Official website]
 
* [http://gruntjs.com/ Official website]
 
* [https://en.wikipedia.org/wiki/Grunt_(software) Grunt (software)] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Grunt_(software) Grunt (software)] @ Wikipedia
 +
* [http://gruntjs.com/getting-started Getting started] @ gruntjs.com
 +
* [https://semaphoreci.com/community/tutorials/getting-started-with-grunt-js Getting started with Grunt.js] @ semaphoreci.com
 +
* [https://scotch.io/tutorials/a-simple-guide-to-getting-started-with-grunt A Simple Guide to Getting Started With Grunt] @ scotch.io
 +
* [https://www.smashingmagazine.com/2013/10/get-up-running-grunt/ Get Up And Running With Grunt] @ smashingmagazine.com
 +
* [https://24ways.org/2013/grunt-is-not-weird-and-hard/ Grunt for People Who Think Things Like Grunt are Weird and Hard] @ 24ways.org
 +
* [https://github.com/vladikoff/grunt-devtools grunt-devtools] - Grunt task runner extension for Chrome Developer Tools - see [[Web development tools]].
  
  
 
[[Category:JavaScript]]
 
[[Category:JavaScript]]
 
[[Category:JavaScript libraries]]
 
[[Category:JavaScript libraries]]

Latest revision as of 12:31, 17 August 2016

Grunt is a JavaScript task runner: an automation tool for performing repetitive tasks like minification, compilation, unit testing, linting, etc.

It depends on Node.js and npm.

The Grunt ecosystem currently has over five thousand plugins available.

Users include Adobe Systems, jQuery, Twitter, Mozilla, Bootstrap (framework), Cloudant, Opera, WordPress, Walmart, Victoria's Secret, and Microsoft.

See also

External links