Last active
January 30, 2017 11:42
-
-
Save FGRibreau/06dd480e4095274bd77a34da80cf4a49 to your computer and use it in GitHub Desktop.
Moving our CI from npm to yarn, fresh install performance http://blog.fgribreau.com/2017/01/how-we-reduced-by-37-our-nodejs-project.html
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
time docker run --rm -v $(pwd):/src mkenney/npm npm install | |
12:04:14 real 3m33.500s | |
12:04:14 user 0m0.780s | |
12:04:14 sys 0m0.716s | |
time docker run --rm -v $(pwd):/workspace kkarczmarczyk/node-yarn yarn install | |
12:07:29 real 2m0.769s | |
12:07:29 user 0m0.164s | |
12:07:29 sys 0m0.032s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment