Created
October 11, 2016 18:10
-
-
Save AndrewIngram/9bafb11bf625cd12ccc78f0ba53aeea6 to your computer and use it in GitHub Desktop.
timing yarn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rm -rf node_modules | |
$ time npm install | |
>> 119.76 | |
$ time npm install | |
>> 19.68 | |
$ du -sh node_modules | |
>> 259M | |
$ rm -rf node_modules | |
$ time yarn | |
>> 59.34 | |
$ time yarn | |
>> 0.57 | |
$ du -sh node_modules | |
>> 259M | |
$ rm -rf node_modules | |
$ time yarn | |
>> 29.06 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment