diff --git a/README.md b/README.md
index b357d54e..412f0605 100644
--- a/README.md
+++ b/README.md
@@ -22,9 +22,15 @@ Additionally, a helper function is provided to verify the current user's auth to
Finally, `redux-token-auth` provides a component wrapper that will gate your specified page components if the user is not signed in This is to prevent unauthorized users from accessing particular pages in your app. React Router v4.0.0+ is required for this to work properly.
## Installation
-`npm install --save redux-token-auth`
+```
+npm install --save redux-token-auth
+```
+
+or if your project uses Yarn,
-Have you ever installed an NPM module any other way?
+```
+yarn add redux-token-auth
+```
## Dependencies
Your project will need the popular Redux Thunk middleware (written by none other than the man, the myth, the legend Dan Abramov himself) in order to function properly.