-
-
Notifications
You must be signed in to change notification settings - Fork 21.8k
fix several examples #3310
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
fix several examples #3310
Changes from 3 commits
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 |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| // first: | ||
| // $ npm install redis online | ||
| // first (if you have not done it yet): | ||
| // $ npm install redis | ||
| // $ brew install redis | ||
|
||
| // $ redis-server | ||
|
|
||
| // then: | ||
| // $ npm install online | ||
|
|
||
| /** | ||
| * Module dependencies. | ||
| */ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| // first: | ||
| // first (if you have not done it yet): | ||
| // $ npm install redis | ||
| // $ brew install redis | ||
|
||
| // $ redis-server | ||
|
|
||
| /** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| // first: | ||
| // first (if you have not done it yet): | ||
| // $ npm install redis | ||
| // $ brew install redis | ||
|
||
| // $ redis-server | ||
|
|
||
| var express = require('../..'); | ||
|
|
||
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.
If install instructions are added, can they be more accessible to the general user base? For example, this only works if the user is both (a) using MacOS and (b) has Homebrew installed (not of which is noted in here, just like how installing Redis was not noted before). Perhaps remove the command altogether and just add a link to Redis's site for how to install?
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.
I agree with you, Doug.