Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/utkarshkukreti/elm-remotedev
Integration of Elm Application's `update` function with Redux DevTools Extension. An alterative to the official Elm Debugger.
https://github.com/utkarshkukreti/elm-remotedev
elm
Last synced: 2 months ago
JSON representation
Integration of Elm Application's `update` function with Redux DevTools Extension. An alterative to the official Elm Debugger.
- Host: GitHub
- URL: https://github.com/utkarshkukreti/elm-remotedev
- Owner: utkarshkukreti
- Created: 2018-03-23T11:13:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-05T16:16:45.000Z (over 6 years ago)
- Last Synced: 2024-10-04T11:58:48.430Z (3 months ago)
- Topics: elm
- Language: JavaScript
- Homepage:
- Size: 68.4 KB
- Stars: 60
- Watchers: 6
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# elm-remotedev
This project contains code that allows you to intercept calls to your Elm App's
`update` function and send the message and model to the
[Redux DevTools Extension][redux-devtools-extension].## Demo
![Demo GIF](https://cdn.rawgit.com/utkarshkukreti/83520da614940ef26b68e4f456b563c3/raw/d9130e1a09181dea9c655d107c3ff55aacb1b1a7/a.gif)
## Usage
### Elm 0.18 / elm-lang/core 5.x.x
Running this with Elm 0.18 requires a one line patch to the JS code of Elm's
`elm-lang/core` package.1. Install the Redux DevTools extension for [Firefox][firefox-extension] or
[Google Chrome][google-chrome-extension].2. Open `elm-stuff/packages/elm-lang/core/5.1.1/src/Native/Platform.js` and
around line 120, just below `model = results._0;`, add the following line:```
typeof ElmRemoteDev !== 'undefined' && ElmRemoteDev.send(msg, model);
```Your code should now look like:
```
...
model = results._0;
typeof ElmRemoteDev !== 'undefined' && ElmRemoteDev.send(msg, model);
updateView(model);
...
```3. Include the following script in your page, preferably before you mount your
application:```
```Now recompile your app and reload it in your browser and you'll see every call
to `update` being logged in the extension window.[redux-devtools-extension]: https://github.com/zalmoxisus/redux-devtools-extension
[firefox-extension]: https://addons.mozilla.org/en-US/firefox/addon/remotedev/
[google-chrome-extension]: https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd