aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-09-03 15:11:59 +0300
committerGitHub <noreply@github.com>2019-09-03 15:11:59 +0300
commitbb03625e4e20ed7680c789ae1321e66ab509d819 (patch)
tree08d462ff08adc2e0ee1f7c4cdb2fed656155fdeb /README.md
parent6d5cb2611be73e4c3b0787ac00fe28e4c243417e (diff)
parent5026375ba43e7c6bdffbab1d38cd72a3ddb2c0ad (diff)
downloadelectron-hot-reload-bb03625e4e20ed7680c789ae1321e66ab509d819.tar.xz
electron-hot-reload-bb03625e4e20ed7680c789ae1321e66ab509d819.zip
Merge pull request #2 from valentineus/develop
Published a package to the NPM repository
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 02c5ac7..cd94d80 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# ElectronJS Live Reload
+# ElectronJS Hot 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-live-reload
+yarn add electron-hot-reload
# NPM
-npm install --save electron-live-reload
+npm install --save electron-hot-reload
```
Next, you should create watchers:
```javascript
-import { mainReloader, rendererReloader } from 'electron-live-reload';
+import { mainReloader, rendererReloader } from 'electron-hot-reload';
import { app } from 'electron';
import path from 'path';