-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor README tweaks #1452
Minor README tweaks #1452
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,23 +19,23 @@ | |
|
||
**Fast:** Yarn caches every package it downloads so it never needs to download the same package again. It also parallelizes operations to maximize resource utilization so install times are faster than ever. | ||
|
||
**Reliable:** Using a detailed, but concise, lockfile format, and a deterministic algorithm for installs, Yarn is able to guarantee that an install that worked on one system will work exactly the same way on any other system. | ||
**Reliable:** Thanks to a detailed (but concise) lockfile format and a deterministic algorithm for installs, Yarn is able to guarantee that an install that worked on one system will work exactly the same way on any other system. | ||
|
||
**Secure:** Yarn uses checksums to verify the integrity of every installed package before its code is executed. | ||
|
||
## Features | ||
|
||
* Offline Mode: If you've installed a package before, you can install it again without any internet connection. | ||
* Deterministic: The same dependencies will be installed the same exact way across every machine regardless of install order. | ||
* Network Performance: Yarn efficiently queues up requests and avoids request waterfalls in order to maximize network utilization. | ||
* Multiple Registries: Install any package from either npm or Bower and keep your package workflow the same. | ||
* Network Resilience: A single request failing won't cause an install to fail. Requests are retried upon failure. | ||
* Flat Mode: Resolve mismatching versions of dependencies to a single version to avoid creating duplicates. | ||
* More emojis. 🐈 | ||
* **Offline Mode.** If you've installed a package before, you can install it again without any internet connection. | ||
* **Deterministic.** The same dependencies will be installed in the same exact way on any machine, regardless of install order. | ||
* **Network Performance.** Yarn efficiently queues up requests and avoids request waterfalls in order to maximize network utilization. | ||
* **Multiple Registries.** Install any package from either npm or Bower. Keep your package workflow the same. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we should remove this bullet point There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The change here seems reasonable, but if @thejameskyle thinks it should be removed, then let's remove it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bower support is being removed |
||
* **Network Resilience.** A single request failing won't cause an install to fail. Requests are retried upon failure. | ||
* **Flat Mode.** Yarn resolves mismatched versions of dependencies to a single version to avoid creating duplicates. | ||
* **More emojis.** 🐈 | ||
|
||
## Installing Yarn | ||
|
||
Read the [Installation Guide](https://yarnpkg.com/en/docs/install) on our website for detailed instructions on how to install Yarn on your operating system. | ||
Read the [Installation Guide](https://yarnpkg.com/en/docs/install) on our website for detailed instructions on how to install Yarn. | ||
|
||
## Contributing to Yarn | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was better as is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about
I don't think we need the "but".