Skip to content

Commit fe21620

Browse files
authored
docs: (README) removed $ from npm commands (#1590)
1 parent fb8630f commit fe21620

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ Medis starts with all the basic features you need:
102102
## Install
103103

104104
```shell
105-
$ npm install ioredis
105+
npm install ioredis
106106
```
107107

108108
In a TypeScript project, you may want to add TypeScript declarations for Node.js:
109109

110110
```shell
111-
$ npm install --save-dev @types/node
111+
npm install --save-dev @types/node
112112
```
113113

114114
## Basic Usage
@@ -1396,7 +1396,7 @@ default, this option is disabled and can only be used for debugging purposes. Yo
13961396
Start a Redis server on 127.0.0.1:6379, and then:
13971397

13981398
```shell
1399-
$ npm test
1399+
npm test
14001400
```
14011401

14021402
`FLUSH ALL` will be invoked after each test, so make sure there's no valuable data in it before running tests.

0 commit comments

Comments
 (0)