summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-22 00:04:11 +0300
committerValentin Popov <info@valentineus.link>2019-08-22 00:04:11 +0300
commit8147b911dec725f50fb79e22dd149e13eca02d81 (patch)
tree5b65999c40a916d0e4bb5f878b30cee236045e94 /README.md
parent9c3b4811734ecbebbcd5109a3a3d17f06177108f (diff)
downloadelectron-hot-reload-8147b911dec725f50fb79e22dd149e13eca02d81.tar.xz
electron-hot-reload-8147b911dec725f50fb79e22dd149e13eca02d81.zip
Updated a package's name
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 2ded40d..02c5ac7 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# ElectronJS Reloader
+# ElectronJS Live Reload
It is a simple method to restart your application.
@@ -15,16 +15,16 @@ First, you should install this package:
```bash
# Yarn
-yarn add electron-reloader
+yarn add electron-live-reload
# NPM
-npm install --save electron-reloader
+npm install --save electron-live-reload
```
Next, you should create watchers:
```javascript
-import { mainReloader, rendererReloader } from 'electron-reloader';
+import { mainReloader, rendererReloader } from 'electron-live-reload';
import { app } from 'electron';
import path from 'path';