From fe21620d64017851b704639388823316c185c5e8 Mon Sep 17 00:00:00 2001 From: Manmohan Singh <68352467+pulpmint@users.noreply.github.com> Date: Fri, 27 May 2022 06:34:40 +0530 Subject: [PATCH] docs: (README) removed $ from npm commands (#1590) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 52b0fe93..8263e6e1 100644 --- a/README.md +++ b/README.md @@ -102,13 +102,13 @@ Medis starts with all the basic features you need: ## Install ```shell -$ npm install ioredis +npm install ioredis ``` In a TypeScript project, you may want to add TypeScript declarations for Node.js: ```shell -$ npm install --save-dev @types/node +npm install --save-dev @types/node ``` ## Basic Usage @@ -1396,7 +1396,7 @@ default, this option is disabled and can only be used for debugging purposes. Yo Start a Redis server on 127.0.0.1:6379, and then: ```shell -$ npm test +npm test ``` `FLUSH ALL` will be invoked after each test, so make sure there's no valuable data in it before running tests.