Skip to content

Instantly share code, notes, and snippets.

@nfroidure
Last active January 4, 2016 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfroidure/8543653 to your computer and use it in GitHub Desktop.
Save nfroidure/8543653 to your computer and use it in GitHub Desktop.
Help me benchmarking Gulp VS Grunt! A summary of the results will be published on my blog (http://www.insertafter.com/blog.html).
#!/bin/bash
# Install the project
git clone git@github.com:ChtiJS/chtijs.francejs.org chtijs
cd chtijs
# Testing the Grunt build
git checkout master
npm install --quiet
time for a in {1..10}; do grunt dist; done
# Copy paste the result as in a comment to this gist formatted as in the first comment
# Testing the Gulp build
git checkout gulp
npm install --quiet
# in the buffer mode
time for a in {1..10}; do gulp build --prod; done
# in the stream mode
time for a in {1..10}; do gulp build --prod --stream; done
# Copy paste the result as in a comment to this gist formatted as in the first comment
### Note ###
# The full potential of stream mode isn't revealed by those tests since there
# is several plugins that do not support streaming yet
@nfroidure
Copy link
Author

Ok, new benchmarks are irrelevant since the 2 branches diverged now. Thanks for the intent :).

@neemzy
Copy link

neemzy commented Feb 16, 2014

Oops, sorry it took me that long...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment