Skip to content

Commit 3849405

Browse files
committed
docs(socketio#4681): update info on redis server and dependency installation
1 parent b6a70e0 commit 3849405

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

examples/private-messaging-vue/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,20 @@ Please read the related guide:
1010
## Running the frontend
1111

1212
```
13-
npm install
13+
npm install -legacy-peer-deps
1414
npm run serve
1515
```
1616

1717
### Running the server
1818

19+
Before running the server, you need `redis-server` up and running. If you haven't installed redis yet on your machine, go ahead and [install it.](https://redis.io/docs/getting-started/installation/).
20+
21+
After installing you can spin up the server on default port 6379 using this command:
22+
23+
```
24+
redis-server
25+
```
26+
1927
```
2028
cd server
2129
npm install

0 commit comments

Comments
 (0)