Skip to content

Instantly share code, notes, and snippets.

@AndrewIngram
Created October 11, 2016 18:10
Show Gist options
  • Save AndrewIngram/9bafb11bf625cd12ccc78f0ba53aeea6 to your computer and use it in GitHub Desktop.
Save AndrewIngram/9bafb11bf625cd12ccc78f0ba53aeea6 to your computer and use it in GitHub Desktop.
timing yarn
$ 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