Skip to content

Commit

Permalink
Corrects spelling error in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
maximumdata committed Feb 3, 2017
1 parent cc9a67a commit e705881
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 8,7 @@ elemon
`elemon` is a tiny module that tries to provide a simple and yet efficient live-reload tool for developing [Electron](https://github.com/electron/electron) applications. You just need to pass the `app` and `BrowserWindows` and the name of the files that are associated with them as a parameter to the `elemon` function **after** your app is `ready`. Please check out the example below to see how you can easily use it to watch your app and cleanly reload it upon any changes. If the changed
file is the main app file, then it `relaunch` the app and `exit` the current instance. If the changed file is a file that is associated with a browser window, then that window will only be reloaded.

In fact, setting up a clean live-reload tool for developing an elenctron application is super simple by using the [Electron API](https://github.com/electron/electron/tree/master/docs). The api already comes with whatever you need; just add a watcher (like [chokidar](https://github.com/paulmillr/chokidar) or whatever watcher you like) and you are all set.
In fact, setting up a clean live-reload tool for developing an electron application is super simple by using the [Electron API](https://github.com/electron/electron/tree/master/docs). The api already comes with whatever you need; just add a watcher (like [chokidar](https://github.com/paulmillr/chokidar) or whatever watcher you like) and you are all set.

Install
-------
Expand Down Expand Up @@ -102,4 102,3 @@ app.on('ready', () => {
```

That's it. Have fun writing your [Electron](https://github.com/electron/electron) applications.

0 comments on commit e705881

Please sign in to comment.