https://github.com/radar/phoenix-react-websocket-todo
https://github.com/radar/phoenix-react-websocket-todo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/radar/phoenix-react-websocket-todo
- Owner: radar
- Created: 2018-11-01T10:02:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T21:46:53.000Z (over 6 years ago)
- Last Synced: 2025-02-10T13:44:02.347Z (3 months ago)
- Language: Elixir
- Size: 143 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo: Phoenix + React + Websocket Demo
This is a small Phoenix application which demonstrates how to use Phoenix Channels, React and Web Sockets to build a simple todo list application.
You can run this by first installing Elixir, and then:
```
mix deps.get
mix do ecto.create, ecto.migrate
mix phoenix.server
```At http://localhost:4000, you should see the todo list. If you open the same list in another browser, you'll notice that changes on one browser are automatically sent to the other browser.
