├── .gitignore
├── ex
├── test
│ ├── test_helper.exs
│ └── ex_test.exs
├── .formatter.exs
├── lib
│ └── ex.ex
├── README.md
├── mix.exs
├── .gitignore
└── mix.lock
├── Makefile
├── resources.md
├── data
└── urls.txt
└── Readme.md
/.gitignore:
--------------------------------------------------------------------------------
1 | src/
2 |
--------------------------------------------------------------------------------
/ex/test/test_helper.exs:
--------------------------------------------------------------------------------
1 | ExUnit.start()
2 |
--------------------------------------------------------------------------------
/ex/.formatter.exs:
--------------------------------------------------------------------------------
1 | # Used by "mix format"
2 | [
3 | inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
4 | ]
5 |
--------------------------------------------------------------------------------
/ex/test/ex_test.exs:
--------------------------------------------------------------------------------
1 | defmodule ExTest do
2 | use ExUnit.Case
3 | doctest Ex
4 |
5 | test "greets the world" do
6 | assert Ex.hello() == :world
7 | end
8 | end
9 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | update:
2 | export UPDATER_ROOT=$$(pwd); cd ex && mix update
3 |
4 | readme:
5 | export UPDATER_ROOT=$$(pwd); cd ex && mix readme
6 | size:
7 | du -sh src/github.com/* | sort -h
8 |
--------------------------------------------------------------------------------
/ex/lib/ex.ex:
--------------------------------------------------------------------------------
1 | defmodule Ex do
2 | @moduledoc """
3 | Documentation for `Ex`.
4 | """
5 |
6 | @doc """
7 | Hello world.
8 |
9 | ## Examples
10 |
11 | iex> Ex.hello()
12 | :world
13 |
14 | """
15 | def hello do
16 | :world
17 | end
18 | end
19 |
--------------------------------------------------------------------------------
/ex/README.md:
--------------------------------------------------------------------------------
1 | # Ex
2 |
3 | **TODO: Add description**
4 |
5 | ## Installation
6 |
7 | If [available in Hex](https://hex.pm/docs/publish), the package can be installed
8 | by adding `ex` to your list of dependencies in `mix.exs`:
9 |
10 | ```elixir
11 | def deps do
12 | [
13 | {:ex, "~> 0.1.0"}
14 | ]
15 | end
16 | ```
17 |
18 | Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
19 | and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
20 | be found at [https://hexdocs.pm/ex](https://hexdocs.pm/ex).
21 |
22 |
--------------------------------------------------------------------------------
/ex/mix.exs:
--------------------------------------------------------------------------------
1 | defmodule Ex.MixProject do
2 | use Mix.Project
3 |
4 | def project do
5 | [
6 | app: :ex,
7 | version: "0.1.0",
8 | elixir: "~> 1.11",
9 | start_permanent: Mix.env() == :prod,
10 | deps: deps()
11 | ]
12 | end
13 |
14 | # Run "mix help compile.app" to learn about applications.
15 | def application do
16 | [
17 | extra_applications: [:logger]
18 | ]
19 | end
20 |
21 | # Run "mix help deps" to learn about dependencies.
22 | defp deps do
23 | [
24 | {:updater, github: "happycodrz/updater", branch: "master" }
25 | ]
26 | end
27 | end
28 |
--------------------------------------------------------------------------------
/ex/.gitignore:
--------------------------------------------------------------------------------
1 | # The directory Mix will write compiled artifacts to.
2 | /_build/
3 |
4 | # If you run "mix test --cover", coverage assets end up here.
5 | /cover/
6 |
7 | # The directory Mix downloads your dependencies sources to.
8 | /deps/
9 |
10 | # Where third-party dependencies like ExDoc output generated docs.
11 | /doc/
12 |
13 | # Ignore .fetch files in case you like to edit your project deps locally.
14 | /.fetch
15 |
16 | # If the VM crashes, it generates a dump, let's ignore it too.
17 | erl_crash.dump
18 |
19 | # Also ignore archive artifacts (built via "mix archive.build").
20 | *.ez
21 |
22 | # Ignore package tarball (built via "mix hex.build").
23 | ex-*.tar
24 |
25 |
26 | # Temporary files for e.g. tests
27 | /tmp
28 |
--------------------------------------------------------------------------------
/ex/mix.lock:
--------------------------------------------------------------------------------
1 | %{
2 | "cortex": {:hex, :cortex, "0.6.0", "8094830fae266eb0ae34d1a58983c0c49484341f5044fb4dfb81746647bd2993", [:mix], [{:file_system, "~> 0.2", [hex: :file_system, repo: "hexpm", optional: false]}], "hexpm", "d0ef5a2b1269626149118684dc4ea77dbfbc67017f4b4065b71dcefa26cfcc49"},
3 | "file_system": {:hex, :file_system, "0.2.10", "fb082005a9cd1711c05b5248710f8826b02d7d1784e7c3451f9c1231d4fc162d", [:mix], [], "hexpm", "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc"},
4 | "flexi": {:hex, :flexi, "0.4.2", "860b99400c9e98a8b0f84bc986a1436ac980753d494a939f379f195c8833a6f2", [:mix], [], "hexpm", "2ce3216777553c73fab7620972e2f7a7d825dbab9a610fe0c53347bc1948425c"},
5 | "floki": {:hex, :floki, "0.20.4", "be42ac911fece24b4c72f3b5846774b6e61b83fe685c2fc9d62093277fb3bc86", [:mix], [{:html_entities, "~> 0.4.0", [hex: :html_entities, repo: "hexpm", optional: false]}, {:mochiweb, "~> 2.15", [hex: :mochiweb, repo: "hexpm", optional: false]}], "hexpm", "2e7e21cd417c4b13523dd8b97379a33e5f432d4d1b149cf5ab496a4a29bdd7ab"},
6 | "html_entities": {:hex, :html_entities, "0.4.0", "f2fee876858cf6aaa9db608820a3209e45a087c5177332799592142b50e89a6b", [:mix], [], "hexpm", "3e3d7156a272950373ce5a4018b1490bea26676f8d6a7d409f6fac8568b8cb9a"},
7 | "mime": {:hex, :mime, "1.6.0", "dabde576a497cef4bbdd60aceee8160e02a6c89250d6c0b29e56c0dfb00db3d2", [:mix], [], "hexpm", "31a1a8613f8321143dde1dafc36006a17d28d02bdfecb9e95a880fa7aabd19a7"},
8 | "mochiweb": {:hex, :mochiweb, "2.22.0", "f104d6747c01a330c38613561977e565b788b9170055c5241ac9dd6e4617cba5", [:rebar3], [], "hexpm", "cbbd1fd315d283c576d1c8a13e0738f6dafb63dc840611249608697502a07655"},
9 | "mockery": {:hex, :mockery, "2.2.0", "67304d5e1d247e698b171913689369bd23c94e437b4a8f32777c6f74b98cb36f", [:mix], [], "hexpm", "103cd23789f97e607854c22b4b6b598e74753ec36278a767bdba5cfe32ec88c4"},
10 | "tesla": {:hex, :tesla, "1.0.0", "94a9059456d51266f3d40b75ff6be3d18496072ce5ffaabad03d6c00f065cfd1", [:mix], [{:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:hackney, "~> 1.6", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "~> 4.4.0", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0", [hex: :mime, repo: "hexpm", optional: false]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}], "hexpm", "eefee376cbe6be40348f746fd26e485d17721500c838a85bfd24048b7b3c469c"},
11 | "updater": {:git, "https://github.com/happycodrz/updater.git", "8a1db4151e4f8aae1719a172829c4e2fb254e0d3", [branch: "master"]},
12 | }
13 |
--------------------------------------------------------------------------------
/resources.md:
--------------------------------------------------------------------------------
1 | ## Overview
2 | - https://tefter.io/zorbash/lists/phoenix-liveview-examples
3 | - https://elixirforum.com/t/liveview-demos-examples-and-sample-apps-thread/21073/33
4 | - https://elixirforum.com/tag/liveview
5 |
6 |
7 | ### Guides
8 | - https://github.com/phoenixframework/phoenix_live_view/tree/master/guides/server
9 | - https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.html
10 |
11 |
12 | ### Podcasts
13 | - https://thinkingelixir.com/podcast-episodes/020-liveview-v-livewire-alpine-js-with-caleb-porzio/
14 | - https://thinkingelixir.com/podcast-episodes/014-liveview-and-airtable-with-ricardo-garcia-vega/
15 | - https://thinkingelixir.com/podcast-episodes/010-frontend-vs-backend-and-business-value-of-liveview/
16 |
17 | ### Videos
18 | - [ElixirConf 2020 - Opening Keynote - Chris McCord - 2020/09](https://www.youtube.com/watch?v=QJkopba8yyE) - UPLOADS
19 | - [Phoenix LiveView: Working the 80/20 rule - 2020/09](https://www.youtube.com/watch?v=S2SzQLNRZf4)
20 | - [What's new in LiveView - Chris McCord | ElixirConfEU Virtual - 2020/07](https://www.youtube.com/watch?v=VU1JMg9AbLQ)
21 | - [ElixirConf 2019 - Phoenix LiveView Demystified - Alex Garibay - 2019/08](https://www.youtube.com/watch?v=9eOo8hSbMAc)
22 | - [The Primitives of Phoenix LiveView - 2019/11](https://www.youtube.com/watch?v=gPSXxtgmyB8)
23 | - [ElixirConf 2019 - Lighting Talk - Phoenix LiveView in Healthcare - Tyler Clemens](https://www.youtube.com/watch?v=3SWksXENYJg&t=1s)
24 | - [Interactive, Real-time web apps without JavaScript (Phoenix LiveView) - 2020/01](https://www.youtube.com/watch?v=W28SJZUkQAc) + https://github.com/denvaar/liveview_examples
25 | - [GeoRacer - a real-time multiplayer mobile game in Elixir in 6 weeks - ZACK KAYSER and BEAU HEUBACH - 2020/05](https://youtu.be/5DGUqcd-HWQ) + [Zack Kayser, Beau Heubach - Building Real Time Experiences with LiveView and UX Principles - 2020/02](https://youtu.be/cMFZbYBPfqA)
26 |
27 |
28 | ## Courses
29 |
30 | ### LiveView - Alchemist Camp
31 | - https://www.youtube.com/watch?v=NUwpkfwJvWo&list=PLFhQVxlaKQElDQDXXf7ys12KsFIBuGf6e
32 |
33 |
34 | ### Elixircasts.io
35 | - https://elixircasts.io/series/phoenix-live-view
36 |
37 | ### Authentication
38 | - [Authentication and Authorisation in Phoenix Liveview - 2020/10/16](https://www.leanpanda.com/blog/authentication-and-authorisation-in-phoenix-liveview/?s=09)
39 |
40 | ### LiveData
41 | - [LiveData - a (perfect) marriage of JavaScript and Elixir - 11/05/2020](https://www.youtube.com/watch?v=fvNy9bh8_vs)
42 | - https://github.com/surferseo/live_data
43 | - https://elixirforum.com/t/json-with-liveview/33992/9
44 |
45 |
46 | ### LiveView uploads / downloads
47 | - https://elixirforum.com/t/file-download-while-in-liveview/32699/5
48 | - https://tentamen.medium.com/how-to-upload-files-in-elixir-phoenix-json-api-tentamen-software-testing-blog-8c41b877420e
49 |
50 |
51 | ### Testing
52 | - https://www.germanvelasco.com/blog/using-has-element-for-better-liveviewtest-assertions
53 | - End2End Testing - https://medium.com/@svengehring/phoenix-end-to-end-testing-in-real-life-efdba3a85be1
54 | - https://elixirforum.com/t/integration-testing-phoenix-liveview-apps/24268/12
55 |
56 | ### Articles
57 | - https://github.com/nshoes/phoenix-live-view-tips -> FAQ Liveview
58 | - https://s2g.io/extracting-liveview-logic-into-livecomponents (LiveComponents)
59 | - https://dockyard.com/blog/2020/12/21/optimizing-user-experience-with-liveview
60 | - https://dashbit.co/blog/the-beauty-of-liveview
61 | - https://dashbit.co/blog/using-bootstrap-native-with-live-view
62 | - https://hostiledeveloper.com/2020/06/19/organizing-liveview-logic-with-presentation-models.html (patterns)
63 | - https://www.amberbit.com/blog/2020/7/29/building-backdoor-web-console-for-elixir-and-phoenix-part-1/
64 | - https://www.amberbit.com/blog/2020/8/2/building-backdoor-web-console-for-elixir-and-phoenix-part-2/
65 | - https://www.amberbit.com/blog/2020/9/28/building-backdoor-web-console-for-elixir-and-phoenix-part-4/
66 | - http://blog.pthompson.org/liveview-tailwind-css-alpine-js-modal
67 | - https://thepugautomatic.com/2020/08/communicating-between-liveviews-on-the-same-page/
68 | - https://thepugautomatic.com/2020/05/persistent-session-data-via-a-database-in-phoenix-liveview/
69 | - https://thepugautomatic.com/2020/05/persistent-session-data-in-phoenix-liveview/
70 | - https://thepugautomatic.com/2020/05/delaying-the-nprogress-indicator-in-phoenix-liveview/ (UX / feedback)
71 | - https://www.paulfioravanti.com/blog/internationalisation-phoenix-live-layouts/
72 | - https://toranbillups.com/blog/archive/2020/05/09/phoenix-liveview-process-state/ (debugging)
73 | - https://fullstackphoenix.com/tutorials/add-bulk-actions-in-phoenix-liveview (pattern)
74 | - https://curiosum.dev/blog/elixir-phoenix-liveview-messenger-part-1
75 | - https://curiosum.dev/blog/elixir-phoenix-liveview-messenger-part-3
76 | - https://curiosum.dev/blog/elixir-phoenix-liveview-messenger-part-4
77 | - https://pragmaticstudio.com/blog/
78 | - https://pragmaticstudio.com/blog/2020/11/06/liveview-course-update-authentication
79 | - https://pragmaticstudio.com/blog/2020/10/16/liveview-course-update-charting
80 | - https://pragmaticstudio.com/blog/2020/10/23/liveview-course-update-mapping
81 | - https://www.headway.io/blog/client-side-drag-and-drop-with-phoenix-liveview (drag&drop, sortable)
82 |
83 | ### Non-trivial apps
84 | - https://github.com/jonklein/niex (Niex - Interactive Elixir Code Notebooks)
85 | - https://github.com/zkayser/georacer
86 | - https://fullstackphoenix.com/features (features with source for liveview)
87 | - https://github.com/rcoproc/live_studio_phoenix_elixir (Various examples of using Phoenix Live View from the Pragmatic Studio course.)
88 | - https://github.com/pragmaticstudio/live_view_studio
89 | - https://github.com/pedromtavares/moba (A turn-based browser RPG built with Phoenix LiveView)
90 | - https://github.com/barsoom/ex-remit (A self-hosted web app for commit-by-commit code review, written using Phoenix LiveView.) + (https://thepugautomatic.com/2020/07/optimising-data-over-the-wire-in-phoenix-liveview/)
91 | - https://github.com/stevegrossi/sengoku/pull/49 (Migrate from React to LiveView 🔥)
92 | - https://github.com/fixthestatusquo/proca-backend (Backend for the ultimate petition/campaigning tool)
93 | - https://github.com/noozo/live_view_trello_clone
94 | - https://github.com/puemos/frida (Self-hosted customer feedback tool, for all)
95 | - https://github.com/H12/easy_retro - A simple retro tool built with Phoenix LiveView and OTP
96 |
97 |
98 | ### Discussions
99 | - https://elixirforum.com/t/what-will-happen-to-my-liveview-component-if-i-go-to-the-next-page/31116/23
100 | (how to structure your app with multiple LV components)
101 |
102 |
103 | ### Libs
104 | - https://pentacent.com/blog/phoenix-live-sessions/
105 | - https://github.com/gaslight/phoenix-custom-event-hook + https://teamgaslight.com/blog/Phoenix-Liveview-and-Web-Components + https://github.com/gaslight/phoenix-custom-events-demo
106 | - https://github.com/karolsluszniak/phoenix_live_controller - Controller-style abstraction for building multi-action live views on top of Phoenix.LiveView
107 | - https://github.com/chouzar/norm_forms - Experiments around Phoenix Liveview and the Norm libraries
108 | - https://github.com/msaraiva/surface_app A bare bones Surface boilerplate without any node/npm dependencies
109 | - https://github.com/harmon25/react_surface - Render React components with Phoenix LiveView + Surface
110 |
111 |
112 | ### JS libs to use with LiveView
113 | - https://elixirforum.com/t/live-view-front-end-components/36284/5
114 | - https://slimselectjs.com/
115 | - https://github.com/flatpickr/flatpickr
116 | - https://github.com/atomiks/tippyjs
117 | - https://github.com/TarekRaafat/autoComplete.js
118 |
119 | ### Surface
120 | - https://github.com/SolbiatiAlessandro/dixord
121 | - https://github.com/cadebward/live_view_surface_editor
122 | - https://github.com/msaraiva/surface
123 | - https://github.com/msaraiva/surface_app
124 | - https://github.com/msaraiva/surface_bulma
125 | - https://github.com/razuf/elixir-phoenix-surface-realworld
126 | - https://github.com/jprincipe/surface_demo
127 | - https://github.com/tiagoefmoraes/learn_surface
128 | - https://github.com/tschmidleithner/surface_bootstrap4
129 | - https://github.com/tschmidleithner/surface_bootstrap4_demo
130 | - https://github.com/werkzeugh/kandires
131 | - http://surface-demo.msaraiva.io/
132 |
133 |
134 |
135 | ### Alpine.js
136 | - https://dockyard.com/blog/2020/12/21/optimizing-user-experience-with-liveview
--------------------------------------------------------------------------------
/data/urls.txt:
--------------------------------------------------------------------------------
1 | https://github.com/alanvardy/rexex [] Elixir regular expression editor, inspired by Rubular
2 | https://github.com/aleph-naught2tog/live_tinkering [] Little toy demos for Phoenix LiveView
3 | https://github.com/alukasz/pentago [game] Implementation of board game Pentago https://faraway-admired-flyingfish.gi…
4 | https://github.com/amberbit/board [] An example Elixir + Phoenix + OTP + LiveView app
5 | https://github.com/andreaseriksson/poor_man_spa [] Proof of concept for a SPA with Phoenix Live View, Turbolinks and Rails UJS
6 | https://github.com/angelikatyborska/falling_blocks [] A simple game made with PhoenixLiveView https://falling-tiles.angelika.me/
7 | https://github.com/archethic-foundation/archethic-node [] Elixir implementation of the Uniris network Node
8 | https://github.com/artsy/inflow [] Experiment - Artsy import app in Elixir/Phoenix (An experimental batch imports application written in Elixir/Phoenix)
9 | https://github.com/axelclark/ex338 [] Web application to manage the 338 Challenge fantasy sports league https://the338challenge.herokuapp.com
10 | https://github.com/barboza/chatter [] A simple chat application using Phoenix Live View
11 | https://github.com/barsoom/ex-remit [] A self-hosted web app for commit-by-commit code review, written using Phoenix LiveView.
12 | https://github.com/benvp/liveview_autocomplete [] A simple but powerful autocomplete using Phoenix LiveView and Alpine.js
13 | https://github.com/bigardone/phoenix-liveview-ant-farm [] Concurrent ant farm with Elixir and Phoenix LiveView https://phoenix-liveview-ant-farm.her…
14 | https://github.com/BigTom/changeban [] on-line implementation of the Agendashift workshop
15 | https://github.com/cadebward/live_view_surface_editor [] An example repo that uses LV hooks to integrate the ACE editor
16 | https://github.com/CassiusPacheco/live_chat [] A simple (non-optimised) real-time chat built with Phoenix LiveView
17 | https://github.com/chrismccord/phoenix_live_view_example []
18 | https://github.com/ckampfe/rere [] last night I accidentally rebuilt Rubular in 30 lines of code #elixir #phoenixliveview
19 | https://github.com/code-shoily/covid19 [surface] A Phoenix app to display Novel Coronavirus (COVID-19)
20 | https://github.com/coingaming/bennu [] Component system and rendering engine for Phoenix and LiveView
21 | https://github.com/coletiv/blog-phoenix-live-view-google-maps [] How to use Google Maps with Phoenix Live View
22 | https://github.com/dashbitco/bytepack_archive [] Archive of bytepack.io
23 | https://github.com/DataKrewTech/AcqDat [] IoT Data Capture and Visualization Engine https://datakrew.com/#portfolio
24 | https://github.com/DEalog/backoffice [realworld ] The backoffice application for the DEalog platform
25 | https://github.com/DefactoSoftware/BearNecessities [] Multiplayer bear game with Phoenix Live View https://unbearable.nl
26 | https://github.com/dersnek/chirp [] A real-time Twitter clone with LiveView and Phoenix 1.5 (https://youtu.be/MZvmYaFkNJI)
27 | https://github.com/djthread/lucidboard [] A realtime, collaborative kanban tool, built on Elixir, Phoenix, and LiveView.
28 | https://github.com/dmitriid/phreak [] Kubernetes Dashboard with Phoenix LiveView
29 | https://github.com/dnsbty/level10 [] Phoenix LiveView multiplayer card game
30 | https://github.com/dorilla/live_view_black_jack [] BlackJack https://polite-angelic-beaver.gigalixirapp.com/
31 | https://github.com/drumusician/elixir_conf_live_view_dashboard [] A LiveView Dashboard with ElixirConf Stats
32 | https://github.com/dsdshcym/phoenix_live_view_sudoku [] A Sudoku solver written with Elixir, Phoenix, and Phoenix LiveView
33 | https://github.com/Echoes93/flood [] ...
34 | https://github.com/elixirschool/live-view-chat [] A chat app built with Phoenix LiveView, PubSub and Presence
35 | https://github.com/eteubert/open_adventure_capitalist [] A Phoenix LiveView experiment. Simple implementation of Adventure Capitalist.
36 | https://github.com/fly-apps/live_beats [] Play music together with Phoenix LiveView!
37 | https://github.com/FlyingDutchmanGames/battle_box [] The Open Source Bot Battle Engine + (https://github.com/FlyingDutchmanGames/battle_box_client)
38 | https://github.com/fremantle-industries/workbench [] From Idea to Execution - Manage your trading operation across a globally distributed cluster
39 | https://github.com/fully-forged/memento [] Collect saved items from different sources around the web
40 | https://github.com/fully-forged/tune [] A streamlined Spotify client and browser with a focus on performance and integrations.
41 | https://github.com/future-cyborg/phoenix_example_multi_nested_form [] his is an example repo of how to work with nested forms while using Phoenix LiveView.
42 | https://github.com/garthk/live_bg_demo [] To try various ways of doing long-running work in Phoenix LiveView, start with the boilerplate:
43 | https://github.com/gaslight/live_deck [] A Real-Time Presentation Application Powered by Phoenix LiveView
44 | https://github.com/Glimesh/glimesh.tv [] Glimesh is a next generation live streaming platform built by the community, for the community.
45 | https://github.com/guitsaru/rest_client [] A REST client made with Phoenix LiveView
46 | https://github.com/H12/foss_retro [] A simple retro tool built with Phoenix LiveView and OTP
47 | https://github.com/happycodrz/bordo []
48 | https://github.com/hurty/phoenix_live_view_example [] Table editor demo with Phoenix LiveView. Zero javascript, ~80 LOC, table data already available serverside! thanks
49 | https://github.com/imartinat/phoenix_live_view_tablefilter [] Table Filter with Phoenix LiveView https://medium.com/@imartinat/table-f…
50 | https://github.com/jeffkreeftmeijer/hayago [] The Go game, implemented with Phoenix LiveView. https://hayago.herokuapp.com
51 | https://github.com/jmschles/cribbex [components] Cribbage in elixir!
52 | https://github.com/joerichsen/phoenix_live_view_example [] Table pagination, filtering, and sorting with Phoenix LiveView and no JS :-)
53 | https://github.com/JohnB/phoenix_live_view_example [] Collaborative Painting
54 | https://github.com/kuroda/live_dendron [] Live Dendron - a Phoenix LiveView demo
55 | https://github.com/livebook-dev/livebook [] Interactive and collaborative code notebooks for Elixir - made with Phoenix LiveView
56 | https://github.com/Logflare/logflare [] Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript.
57 | https://github.com/makerion/makerion [] Makerion is a 3D printer management project intended to be run on a Raspberry Pi
58 | https://github.com/martinstannard/soup [] A multi-player boggle clone written with Phoenix LiveView https://lettersoup.herokuapp.com
59 | https://github.com/mcrumm/live_upload_example [] Demonstrating file uploads with Phoenix LiveView
60 | https://github.com/mitchellhenke/mprop [] Watch Properties in ...
61 | https://github.com/mmmries/showoff [] A small elixir service for playing with the ChunkySVG library
62 | https://github.com/mnussbaumer/cocktail [reallife] A LiveView Test of a Visual HTML Editor server side rendered
63 | https://github.com/monjohn/phellow [] A Trello Clone in Phoenix using LiveView
64 | https://github.com/moomerman/flappy-phoenix [] Flappy Bird clone written in Elixir using Phoenix LiveView to render the game UI from the server. https://flappy-phoenix.herokuapp.com
65 | https://github.com/mreishus/demon_spirit_umbrella [] Demon Spirit is an abstract board game played on a 5x5 grid.
66 | https://github.com/neslinesli93/breakoutex [] A breakout clone written in pure Elixir, using Phoenix LiveView https://breakoutex.tommasopifferi.com
67 | https://github.com/nickdichev/markdown-live [] MarkdownLive is an example application using Phoenix LiveView which renders user-submitted Markdown on the server. http://markdown.dichev.io
68 | https://github.com/nicolasblanco/booking_calendar [] Full calendar component with days selection persisted in database & real time broadcasting to all clients. 0 lines of JavaScript. Only clean Elixir server-side code
69 | https://github.com/oestrich/grapevine [] The MUD Chat Network https://grapevine.haus
70 | https://github.com/padde/scrumpokr [] Online Scrum poker for remote software development teams https://scrumpo.kr
71 | https://github.com/pedromtavares/moba [reallife, mustsee] MOBA - Multiplayer Online Battle Arena
72 | https://github.com/pentacent/keila [] Open Source Newsletter Tool. - keila.io
73 | https://github.com/PJUllrich/e2e-testing-with-cypress [] Auxiliary code to the talk: End-2-End Testing with Cypress
74 | https://github.com/ramortegui/phoenix_trivia [] Phoenix trivia is a Real Time Multiplayer game developed using Elixir without the need to write javascript https://phx-trivia.gigalixirapp.com
75 | https://github.com/Sanchos01/Phoenix-Sea-Battle [] Battleship, using Phoenix framework (LiveView) https://radiant-plateau-73240.herokua…
76 | https://github.com/sasa1977/demo_system [] Synthetic load generator + ad-hoc scheduler observer powered by #phoenix #LiveView #myelixirstatus
77 | https://github.com/seb3s/kandesk [] Simple Kanban application written in elixir using phoenix liveview
78 | https://github.com/sgobotta/live_dj [] 💿 Join or create video playlists to share a real-time experience with others! 🎧
79 | https://github.com/smeade/phoenix_live_view_example [] It's a server-side calculator. You know, just in case you didn't have one on your phone, or desk, or watch :)
80 | https://github.com/SophieDeBenedetto/phat [] A Phoenix chat app built with LiveView, PubSub and Presence
81 | https://github.com/stevegrossi/sengoku [] An online Risk-like game built with Elixir and Phoenix LiveView
82 | https://github.com/surface-ui/surface [] A component based library for Phoenix LiveView
83 | https://github.com/syfgkjasdkn/lazy-live-view [] Lazy loading example with JS
84 | https://github.com/thomasbrus/phoenix-live-view-soccer-table [] Soccer Table (Phoenix LiveView Demo)
85 | https://github.com/tonyc/open890 [] A web-based remote UI for the Kenwood TS-890S ham radio transceiver.
86 | https://github.com/topherhunt/reassembling-the-line [] Record video interviews where people share first-hand experience on an important topic. Code each segment of the video by theme. Explore the results using a novel filterable segment playback UI. Demo: https://rtl-demo1.herokuapp.com/
87 | https://github.com/toranb/elixir-match [] The source code for https://elixirmatch.com
88 | https://github.com/tuacker/phoenix_live_view_form_steps [] Small test to try and split a form into multiple steps using Phoenix Live View
89 | https://github.com/vorce/lasso [] Inspect HTTP requests. Powered by Phoenix and LiveView.
90 | https://github.com/wyeworks/elixir_console [] Elixir Web Console
91 | https://github.com/zblanco/libu [] A series of experiments built with Elixir, Phoenix, LiveView, and Tailwind CSS.
92 | https://github.com/zkayser/georacer [] GeoRacer -- The Hot Cold GeoRacing App With Phoenix LiveView Driving Webcomponents and SVGs!
93 | https://github.com/zkayser/pfds_visualizations [] A UI for visualizing purely functional data structures
94 | https://github.com/zorbash/observer_live [] This is a port of observer_cli using phoenix and LiveView
--------------------------------------------------------------------------------
/Readme.md:
--------------------------------------------------------------------------------
1 | ## Examples for open source LiveView (Elixir / Phoenix) applications
2 |
3 |
4 | Found here:
5 | - https://github.com/search?l=elixir&o=desc&q=stars%3A%3E1+phoenix_live_view&s=indexed&type=Code
6 | - https://shift.infinite.red/phoenix-liveview-round-up-the-story-so-far-3cbb1648e940 (2019/05/03)
7 | - https://medium.com/@leandrocesquini/phoenix-liveview-collection-8259f35ff2b0 (2019/05/06)
8 | - https://10xdevelopers.com/articles/liveview-examples (2019/05/29)
9 |
10 |
11 | ## Running the update
12 |
13 | ```bash
14 | $ make update
15 | ```
16 | ## Showing all umbrella projects
17 |
18 | ```bash
19 | $ make umbrellas
20 | ```
21 |
22 | ### Umbrellas
23 |
24 |
25 |
26 |
27 | ### Navigation
28 |
29 | - [By Name](#by-name)
30 | - [By Activity](#by-activity)
31 | - [By CommitCount](#by-commitcount)
32 | - [By Popularity](#by-popularity)
33 |
34 | ### By Name
35 |
36 | - [alanvardy/rexex](https://github.com/alanvardy/rexex) - Elixir regular expression editor, inspired by Rubular
( 2019-09-05 / 72 commits / 0 stars )
37 | - [aleph-naught2tog/live_tinkering](https://github.com/aleph-naught2tog/live_tinkering) - Little toy demos for Phoenix LiveView
( 2019-03-21 / 25 commits / 29 stars )
38 | - [alukasz/pentago](https://github.com/alukasz/pentago) - Implementation of board game Pentago
( 2019-08-02 / 54 commits / 3 stars )
39 | - [amberbit/board](https://github.com/amberbit/board) - An example Elixir + Phoenix + OTP + LiveView app
( 2019-05-15 / 6 commits / 15 stars )
40 | - [andreaseriksson/poor_man_spa](https://github.com/andreaseriksson/poor_man_spa) - Proof of concept for a SPA with Phoenix Live View, Turbolinks and Rails UJS
( 2019-06-10 / 16 commits / 4 stars )
41 | - [angelikatyborska/falling_blocks](https://github.com/angelikatyborska/falling_blocks) - A simple game made with PhoenixLiveView
( 2021-03-10 / 54 commits / 15 stars )
42 | - [archethic-foundation/archethic-node](https://github.com/archethic-foundation/archethic-node) - Official ArchEthic Blockchain node, written in Elixir
( 2022-01-27 / 746 commits / 24 stars )
43 | - [artsy/inflow](https://github.com/artsy/inflow) - Experiment - Artsy import app in Elixir/Phoenix
( 2020-12-11 / 35 commits / 3 stars )
44 | - [axelclark/ex338](https://github.com/axelclark/ex338) - Web application to manage the 338 Challenge fantasy sports league
( 2021-08-15 / 916 commits / 16 stars )
45 | - [barboza/chatter](https://github.com/barboza/chatter) - A simple chat application using Phoenix Live View
( 2019-09-18 / 11 commits / 2 stars )
46 | - [barsoom/ex-remit](https://github.com/barsoom/ex-remit) - A self-hosted web app for commit-by-commit code review, written using Phoenix LiveView.
( 2022-01-19 / 586 commits / 18 stars )
47 | - [benvp/liveview_autocomplete](https://github.com/benvp/liveview_autocomplete) - A simple but powerful autocomplete using Phoenix LiveView and Alpine.js
( 2020-07-11 / 2 commits / 11 stars )
48 | - [bigardone/phoenix-liveview-ant-farm](https://github.com/bigardone/phoenix-liveview-ant-farm) - Concurrent ant farm with Elixir and Phoenix LiveView
( 2019-05-11 / 10 commits / 62 stars )
49 | - [BigTom/changeban](https://github.com/BigTom/changeban) -
( 2021-10-17 / 131 commits / 0 stars )
50 | - [cadebward/live_view_surface_editor](https://github.com/cadebward/live_view_surface_editor) - An example repo that uses LV hooks to integrate the ACE editor
( 2020-01-16 / 6 commits / 1 stars )
51 | - [CassiusPacheco/live_chat](https://github.com/CassiusPacheco/live_chat) - A simple (non-optimised) real-time chat built with Phoenix LiveView
( 2019-03-31 / 3 commits / 2 stars )
52 | - [chrismccord/phoenix_live_view_example](https://github.com/chrismccord/phoenix_live_view_example) -
( 2021-09-24 / 112 commits / 488 stars )
53 | - [ckampfe/rere](https://github.com/ckampfe/rere) -
( 2019-03-28 / 1 commits / 6 stars )
54 | - [code-shoily/covid19](https://github.com/code-shoily/covid19) - A Phoenix app to display Novel Coronavirus (COVID-19)
( 2022-01-02 / 268 commits / 90 stars )
55 | - [coingaming/bennu](https://github.com/coingaming/bennu) - Component system and rendering engine for Phoenix and LiveView
( 2021-09-26 / 88 commits / 2 stars )
56 | - [coletiv/blog-phoenix-live-view-google-maps](https://github.com/coletiv/blog-phoenix-live-view-google-maps) - How to use Google Maps with Phoenix Live View
( 2020-07-14 / 4 commits / 4 stars )
57 | - [dashbitco/bytepack_archive](https://github.com/dashbitco/bytepack_archive) - Archive of bytepack.io
( 2020-12-03 / 1 commits / 295 stars )
58 | - [DataKrewTech/AcqDat](https://github.com/DataKrewTech/AcqDat) - IoT Data Acquisition and Visualization Engine
( 2020-01-16 / 28 commits / 0 stars )
59 | - [DEalog/backoffice](https://github.com/DEalog/backoffice) - The backoffice application for the DEalog platform
( 2021-09-16 / 194 commits / 4 stars )
60 | - [DefactoSoftware/BearNecessities](https://github.com/DefactoSoftware/BearNecessities) - Multiplayer bear game with Phoenix Live View
( 2019-09-17 / 260 commits / 19 stars )
61 | - [dersnek/chirp](https://github.com/dersnek/chirp) - A real-time Twitter clone with LiveView and Phoenix 1.5 (https://youtu.be/MZvmYaFkNJI)
( 2021-01-25 / 5 commits / 95 stars )
62 | - [djthread/lucidboard](https://github.com/djthread/lucidboard) - A realtime, collaborative kanban tool, built on Elixir, Phoenix, and LiveView.
( 2019-12-12 / 281 commits / 80 stars )
63 | - [dmitriid/phreak](https://github.com/dmitriid/phreak) - Kubernetes Dashboard with Phoenix LiveView
( 2020-03-16 / 19 commits / 17 stars )
64 | - [dnsbty/level10](https://github.com/dnsbty/level10) - Phoenix LiveView multiplayer card game
( 2021-09-09 / 267 commits / 40 stars )
65 | - [dorilla/live_view_black_jack](https://github.com/dorilla/live_view_black_jack) - BlackJack https://polite-angelic-beaver.gigalixirapp.com/
( 2019-04-04 / 20 commits / 58 stars )
66 | - [drumusician/elixir_conf_live_view_dashboard](https://github.com/drumusician/elixir_conf_live_view_dashboard) - A LiveView Dashboard with ElixirConf Stats
( 2019-04-03 / 4 commits / 16 stars )
67 | - [dsdshcym/phoenix_live_view_sudoku](https://github.com/dsdshcym/phoenix_live_view_sudoku) - A Sudoku solver written with Elixir, Phoenix, and Phoenix LiveView
( 2019-07-26 / 21 commits / 12 stars )
68 | - [Echoes93/flood](https://github.com/Echoes93/flood) -
( 2019-07-12 / 22 commits / 0 stars )
69 | - [elixirschool/live-view-chat](https://github.com/elixirschool/live-view-chat) - A chat app built with Phoenix LiveView, PubSub and Presence
( 2020-04-22 / 12 commits / 48 stars )
70 | - [eteubert/open_adventure_capitalist](https://github.com/eteubert/open_adventure_capitalist) - A Phoenix LiveView experiment. Simple implementation of Adventure Capitalist.
( 2019-03-17 / 7 commits / 13 stars )
71 | - [fly-apps/live_beats](https://github.com/fly-apps/live_beats) -
( 2022-02-04 / 226 commits / 370 stars )
72 | - [FlyingDutchmanGames/battle_box](https://github.com/FlyingDutchmanGames/battle_box) - The Open Source Bot Battle Engine
( 2021-01-06 / 1200 commits / 2 stars )
73 | - [fremantle-industries/workbench](https://github.com/fremantle-industries/workbench) - From Idea to Execution - Manage your trading operation across a distributed cluster
( 2022-02-02 / 924 commits / 83 stars )
74 | - [fully-forged/memento](https://github.com/fully-forged/memento) - Collect saved items from different sources around the web
( 2021-10-04 / 267 commits / 96 stars )
75 | - [fully-forged/tune](https://github.com/fully-forged/tune) - A streamlined Spotify client and browser with a focus on performance and integrations.
( 2021-12-03 / 587 commits / 197 stars )
76 | - [future-cyborg/phoenix_example_multi_nested_form](https://github.com/future-cyborg/phoenix_example_multi_nested_form) - This is an example repo of how to work with nested forms while using Phoenix LiveView.
( 2019-05-28 / 2 commits / 1 stars )
77 | - [garthk/live_bg_demo](https://github.com/garthk/live_bg_demo) -
( 2020-11-04 / 6 commits / 1 stars )
78 | - [gaslight/live_deck](https://github.com/gaslight/live_deck) - A Real-Time Presentation Application Powered by Phoenix LiveView
( 2020-10-02 / 241 commits / 66 stars )
79 | - [Glimesh/glimesh.tv](https://github.com/Glimesh/glimesh.tv) - Glimesh is a next generation live streaming platform built by the community, for the community.
( 2022-02-02 / 829 commits / 292 stars )
80 | - [guitsaru/rest_client](https://github.com/guitsaru/rest_client) - A REST client made with Phoenix LiveView
( 2020-09-29 / 19 commits / 23 stars )
81 | - [H12/foss_retro](https://github.com/H12/foss_retro) - A simple retro tool built with Phoenix LiveView and OTP
( 2021-10-13 / 136 commits / 3 stars )
82 | - [happycodrz/bordo](https://github.com/happycodrz/bordo) - mirror / backup from github.com/bordosocial/bordo
( 2020-12-02 / 879 commits / 0 stars )
83 | - [hurty/phoenix_live_view_example](https://github.com/hurty/phoenix_live_view_example) -
( 2019-03-26 / 55 commits / 19 stars )
84 | - [imartinat/phoenix_live_view_tablefilter](https://github.com/imartinat/phoenix_live_view_tablefilter) - Table Filter with Phoenix LiveView
( 2019-06-08 / 91 commits / 15 stars )
85 | - [jeffkreeftmeijer/hayago](https://github.com/jeffkreeftmeijer/hayago) - The Go game, implemented with Phoenix LiveView.
( 2020-12-31 / 7 commits / 56 stars )
86 | - [jmschles/cribbex](https://github.com/jmschles/cribbex) - Cribbage in elixir!
( 2021-05-03 / 66 commits / 0 stars )
87 | - [joerichsen/phoenix_live_view_example](https://github.com/joerichsen/phoenix_live_view_example) -
( 2019-06-15 / 64 commits / 34 stars )
88 | - [JohnB/phoenix_live_view_example](https://github.com/JohnB/phoenix_live_view_example) -
( 2020-06-20 / 83 commits / 4 stars )
89 | - [kuroda/live_dendron](https://github.com/kuroda/live_dendron) - Live Dendron - a Phoenix LiveView demo
( 2020-06-03 / 95 commits / 5 stars )
90 | - [livebook-dev/livebook](https://github.com/livebook-dev/livebook) - Interactive and collaborative code notebooks for Elixir - made with Phoenix LiveView
( 2022-02-04 / 922 commits / 2415 stars )
91 | - [Logflare/logflare](https://github.com/Logflare/logflare) - Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript.
( 2022-01-18 / 4543 commits / 356 stars )
92 | - [makerion/makerion](https://github.com/makerion/makerion) -
( 2019-08-10 / 129 commits / 3 stars )
93 | - [martinstannard/soup](https://github.com/martinstannard/soup) - A multi-player boggle clone written with Phoenix LiveView
( 2022-02-03 / 67 commits / 5 stars )
94 | - [mcrumm/live_upload_example](https://github.com/mcrumm/live_upload_example) - Demonstrating file uploads with Phoenix LiveView
( 2022-01-24 / 44 commits / 35 stars )
95 | - [mitchellhenke/mprop](https://github.com/mitchellhenke/mprop) -
( 2021-05-08 / 206 commits / 9 stars )
96 | - [mmmries/showoff](https://github.com/mmmries/showoff) - A small elixir service for playing with the ChunkySVG library
( 2021-11-27 / 34 commits / 6 stars )
97 | - [mnussbaumer/cocktail](https://github.com/mnussbaumer/cocktail) - A LiveView Test of a Visual HTML Editor server side rendered
( 2019-05-15 / 11 commits / 0 stars )
98 | - [monjohn/phellow](https://github.com/monjohn/phellow) - A Trello Clone in Phoenix using LiveView
( 2021-08-07 / 59 commits / 14 stars )
99 | - [moomerman/flappy-phoenix](https://github.com/moomerman/flappy-phoenix) - 🐦 Flappy Bird clone written in Elixir using Phoenix LiveView to render the game UI from the server.
( 2020-10-17 / 256 commits / 71 stars )
100 | - [mreishus/demon_spirit_umbrella](https://github.com/mreishus/demon_spirit_umbrella) - Demon Spirit is an abstract board game played on a 5x5 grid.
( 2020-05-18 / 429 commits / 10 stars )
101 | - [neslinesli93/breakoutex](https://github.com/neslinesli93/breakoutex) - A breakout clone written in pure Elixir, using Phoenix LiveView
( 2020-09-09 / 93 commits / 34 stars )
102 | - [nickdichev/markdown-live](https://github.com/nickdichev/markdown-live) - MarkdownLive is an example application using Phoenix LiveView which renders user-submitted Markdown on the server.
( 2021-03-10 / 81 commits / 41 stars )
103 | - [nicolasblanco/booking_calendar](https://github.com/nicolasblanco/booking_calendar) -
( 2019-04-15 / 4 commits / 18 stars )
104 | - [oestrich/grapevine](https://github.com/oestrich/grapevine) - The MUD Chat Network
( 2021-02-16 / 1209 commits / 138 stars )
105 | - [padde/scrumpokr](https://github.com/padde/scrumpokr) - Online Scrum poker for remote software development teams
( 2020-04-08 / 25 commits / 3 stars )
106 | - [pedromtavares/moba](https://github.com/pedromtavares/moba) - A turn-based browser RPG built with Phoenix LiveView
( 2022-02-05 / 191 commits / 132 stars )
107 | - [pentacent/keila](https://github.com/pentacent/keila) - Open Source Newsletter Tool.
( 2022-01-31 / 423 commits / 450 stars )
108 | - [PJUllrich/e2e-testing-with-cypress](https://github.com/PJUllrich/e2e-testing-with-cypress) - Auxiliary code to the talk: End-2-End Testing with Cypress
( 2019-10-22 / 7 commits / 2 stars )
109 | - [ramortegui/phoenix_trivia](https://github.com/ramortegui/phoenix_trivia) - Phoenix trivia is a Real Time Multiplayer game developed using Elixir without the need to write javascript
( 2020-02-26 / 102 commits / 13 stars )
110 | - [Sanchos01/Phoenix-Sea-Battle](https://github.com/Sanchos01/Phoenix-Sea-Battle) - Battleship, using Phoenix framework (LiveView)
( 2021-12-20 / 132 commits / 8 stars )
111 | - [sasa1977/demo_system](https://github.com/sasa1977/demo_system) -
( 2019-12-14 / 66 commits / 180 stars )
112 | - [seb3s/kandesk](https://github.com/seb3s/kandesk) - Simple Kanban application written in elixir using phoenix liveview
( 2022-01-26 / 346 commits / 134 stars )
113 | - [sgobotta/live_dj](https://github.com/sgobotta/live_dj) - 💿 Join or create video playlists to share a real-time experience with others! 🎧
( 2021-12-27 / 1226 commits / 18 stars )
114 | - [smeade/phoenix_live_view_example](https://github.com/smeade/phoenix_live_view_example) -
( 2019-03-18 / 58 commits / 4 stars )
115 | - [SophieDeBenedetto/phat](https://github.com/SophieDeBenedetto/phat) - A Phoenix chat app built with LiveView, PubSub and Presence
( 2019-05-12 / 9 commits / 37 stars )
116 | - [stevegrossi/sengoku](https://github.com/stevegrossi/sengoku) - An online Risk-like game built with Elixir and Phoenix LiveView
( 2020-08-28 / 447 commits / 56 stars )
117 | - [surface-ui/surface](https://github.com/surface-ui/surface) - A server-side rendering component library for Phoenix
( 2022-02-03 / 575 commits / 1559 stars )
118 | - [syfgkjasdkn/lazy-live-view](https://github.com/syfgkjasdkn/lazy-live-view) -
( 2020-06-02 / 17 commits / 3 stars )
119 | - [thomasbrus/phoenix-live-view-soccer-table](https://github.com/thomasbrus/phoenix-live-view-soccer-table) - Soccer Table (Phoenix LiveView Demo)
( 2019-04-23 / 5 commits / 1 stars )
120 | - [tonyc/open890](https://github.com/tonyc/open890) - A web-based remote UI for the Kenwood TS-890.
( 2022-01-22 / 686 commits / 41 stars )
121 | - [topherhunt/reassembling-the-line](https://github.com/topherhunt/reassembling-the-line) - Record video interviews where people share first-hand experience on an important topic. Code each segment of the video by theme. Explore the results using a novel filterable segment playback UI. Demo: https://rtl-demo1.herokuapp.com/
( 2021-09-23 / 280 commits / 1 stars )
122 | - [toranb/elixir-match](https://github.com/toranb/elixir-match) - The original source code for https://elixirmatch.com
( 2019-04-03 / 12 commits / 38 stars )
123 | - [tuacker/phoenix_live_view_form_steps](https://github.com/tuacker/phoenix_live_view_form_steps) - Small test to try and split a form into multiple steps using Phoenix Live View
( 2019-05-31 / 11 commits / 5 stars )
124 | - [vorce/lasso](https://github.com/vorce/lasso) - Real-time UI for webhooks
( 2021-03-19 / 226 commits / 26 stars )
125 | - [wyeworks/elixir_console](https://github.com/wyeworks/elixir_console) - Elixir Web Console
( 2022-01-28 / 467 commits / 67 stars )
126 | - [zblanco/libu](https://github.com/zblanco/libu) - A series of experiments built with Elixir, Phoenix, LiveView, and Tailwind CSS.
( 2019-03-26 / 7 commits / 20 stars )
127 | - [zkayser/georacer](https://github.com/zkayser/georacer) - GeoRacer -- The Hot Cold GeoRacing App With Phoenix LiveView Driving Webcomponents and SVGs!
( 2019-10-02 / 215 commits / 62 stars )
128 | - [zkayser/pfds_visualizations](https://github.com/zkayser/pfds_visualizations) - A UI for visualizing purely functional data structures
( 2019-05-18 / 41 commits / 8 stars )
129 | - [zorbash/observer_live](https://github.com/zorbash/observer_live) - A port of observer_cli using LiveView
( 2020-02-20 / 13 commits / 208 stars )
130 |
131 |
132 | [⬆ Navigation](#navigation)
133 |
134 | ### By CommitCount
135 |
136 | - [Logflare/logflare](https://github.com/Logflare/logflare) - Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript.
(4543 commits / 356 stars / 2022-01-18 )
137 | - [sgobotta/live_dj](https://github.com/sgobotta/live_dj) - 💿 Join or create video playlists to share a real-time experience with others! 🎧
(1226 commits / 18 stars / 2021-12-27 )
138 | - [oestrich/grapevine](https://github.com/oestrich/grapevine) - The MUD Chat Network
(1209 commits / 138 stars / 2021-02-16 )
139 | - [FlyingDutchmanGames/battle_box](https://github.com/FlyingDutchmanGames/battle_box) - The Open Source Bot Battle Engine
(1200 commits / 2 stars / 2021-01-06 )
140 | - [fremantle-industries/workbench](https://github.com/fremantle-industries/workbench) - From Idea to Execution - Manage your trading operation across a distributed cluster
(924 commits / 83 stars / 2022-02-02 )
141 | - [livebook-dev/livebook](https://github.com/livebook-dev/livebook) - Interactive and collaborative code notebooks for Elixir - made with Phoenix LiveView
(922 commits / 2415 stars / 2022-02-04 )
142 | - [axelclark/ex338](https://github.com/axelclark/ex338) - Web application to manage the 338 Challenge fantasy sports league
(916 commits / 16 stars / 2021-08-15 )
143 | - [happycodrz/bordo](https://github.com/happycodrz/bordo) - mirror / backup from github.com/bordosocial/bordo
(879 commits / 0 stars / 2020-12-02 )
144 | - [Glimesh/glimesh.tv](https://github.com/Glimesh/glimesh.tv) - Glimesh is a next generation live streaming platform built by the community, for the community.
(829 commits / 292 stars / 2022-02-02 )
145 | - [archethic-foundation/archethic-node](https://github.com/archethic-foundation/archethic-node) - Official ArchEthic Blockchain node, written in Elixir
(746 commits / 24 stars / 2022-01-27 )
146 | - [tonyc/open890](https://github.com/tonyc/open890) - A web-based remote UI for the Kenwood TS-890.
(686 commits / 41 stars / 2022-01-22 )
147 | - [fully-forged/tune](https://github.com/fully-forged/tune) - A streamlined Spotify client and browser with a focus on performance and integrations.
(587 commits / 197 stars / 2021-12-03 )
148 | - [barsoom/ex-remit](https://github.com/barsoom/ex-remit) - A self-hosted web app for commit-by-commit code review, written using Phoenix LiveView.
(586 commits / 18 stars / 2022-01-19 )
149 | - [surface-ui/surface](https://github.com/surface-ui/surface) - A server-side rendering component library for Phoenix
(575 commits / 1559 stars / 2022-02-03 )
150 | - [wyeworks/elixir_console](https://github.com/wyeworks/elixir_console) - Elixir Web Console
(467 commits / 67 stars / 2022-01-28 )
151 | - [stevegrossi/sengoku](https://github.com/stevegrossi/sengoku) - An online Risk-like game built with Elixir and Phoenix LiveView
(447 commits / 56 stars / 2020-08-28 )
152 | - [mreishus/demon_spirit_umbrella](https://github.com/mreishus/demon_spirit_umbrella) - Demon Spirit is an abstract board game played on a 5x5 grid.
(429 commits / 10 stars / 2020-05-18 )
153 | - [pentacent/keila](https://github.com/pentacent/keila) - Open Source Newsletter Tool.
(423 commits / 450 stars / 2022-01-31 )
154 | - [seb3s/kandesk](https://github.com/seb3s/kandesk) - Simple Kanban application written in elixir using phoenix liveview
(346 commits / 134 stars / 2022-01-26 )
155 | - [djthread/lucidboard](https://github.com/djthread/lucidboard) - A realtime, collaborative kanban tool, built on Elixir, Phoenix, and LiveView.
(281 commits / 80 stars / 2019-12-12 )
156 | - [topherhunt/reassembling-the-line](https://github.com/topherhunt/reassembling-the-line) - Record video interviews where people share first-hand experience on an important topic. Code each segment of the video by theme. Explore the results using a novel filterable segment playback UI. Demo: https://rtl-demo1.herokuapp.com/
(280 commits / 1 stars / 2021-09-23 )
157 | - [code-shoily/covid19](https://github.com/code-shoily/covid19) - A Phoenix app to display Novel Coronavirus (COVID-19)
(268 commits / 90 stars / 2022-01-02 )
158 | - [dnsbty/level10](https://github.com/dnsbty/level10) - Phoenix LiveView multiplayer card game
(267 commits / 40 stars / 2021-09-09 )
159 | - [fully-forged/memento](https://github.com/fully-forged/memento) - Collect saved items from different sources around the web
(267 commits / 96 stars / 2021-10-04 )
160 | - [DefactoSoftware/BearNecessities](https://github.com/DefactoSoftware/BearNecessities) - Multiplayer bear game with Phoenix Live View
(260 commits / 19 stars / 2019-09-17 )
161 | - [moomerman/flappy-phoenix](https://github.com/moomerman/flappy-phoenix) - 🐦 Flappy Bird clone written in Elixir using Phoenix LiveView to render the game UI from the server.
(256 commits / 71 stars / 2020-10-17 )
162 | - [gaslight/live_deck](https://github.com/gaslight/live_deck) - A Real-Time Presentation Application Powered by Phoenix LiveView
(241 commits / 66 stars / 2020-10-02 )
163 | - [fly-apps/live_beats](https://github.com/fly-apps/live_beats) -
(226 commits / 370 stars / 2022-02-04 )
164 | - [vorce/lasso](https://github.com/vorce/lasso) - Real-time UI for webhooks
(226 commits / 26 stars / 2021-03-19 )
165 | - [zkayser/georacer](https://github.com/zkayser/georacer) - GeoRacer -- The Hot Cold GeoRacing App With Phoenix LiveView Driving Webcomponents and SVGs!
(215 commits / 62 stars / 2019-10-02 )
166 | - [mitchellhenke/mprop](https://github.com/mitchellhenke/mprop) -
(206 commits / 9 stars / 2021-05-08 )
167 | - [DEalog/backoffice](https://github.com/DEalog/backoffice) - The backoffice application for the DEalog platform
(194 commits / 4 stars / 2021-09-16 )
168 | - [pedromtavares/moba](https://github.com/pedromtavares/moba) - A turn-based browser RPG built with Phoenix LiveView
(191 commits / 132 stars / 2022-02-05 )
169 | - [H12/foss_retro](https://github.com/H12/foss_retro) - A simple retro tool built with Phoenix LiveView and OTP
(136 commits / 3 stars / 2021-10-13 )
170 | - [Sanchos01/Phoenix-Sea-Battle](https://github.com/Sanchos01/Phoenix-Sea-Battle) - Battleship, using Phoenix framework (LiveView)
(132 commits / 8 stars / 2021-12-20 )
171 | - [BigTom/changeban](https://github.com/BigTom/changeban) -
(131 commits / 0 stars / 2021-10-17 )
172 | - [makerion/makerion](https://github.com/makerion/makerion) -
(129 commits / 3 stars / 2019-08-10 )
173 | - [chrismccord/phoenix_live_view_example](https://github.com/chrismccord/phoenix_live_view_example) -
(112 commits / 488 stars / 2021-09-24 )
174 | - [ramortegui/phoenix_trivia](https://github.com/ramortegui/phoenix_trivia) - Phoenix trivia is a Real Time Multiplayer game developed using Elixir without the need to write javascript
(102 commits / 13 stars / 2020-02-26 )
175 | - [kuroda/live_dendron](https://github.com/kuroda/live_dendron) - Live Dendron - a Phoenix LiveView demo
(95 commits / 5 stars / 2020-06-03 )
176 | - [neslinesli93/breakoutex](https://github.com/neslinesli93/breakoutex) - A breakout clone written in pure Elixir, using Phoenix LiveView
(93 commits / 34 stars / 2020-09-09 )
177 | - [imartinat/phoenix_live_view_tablefilter](https://github.com/imartinat/phoenix_live_view_tablefilter) - Table Filter with Phoenix LiveView
(91 commits / 15 stars / 2019-06-08 )
178 | - [coingaming/bennu](https://github.com/coingaming/bennu) - Component system and rendering engine for Phoenix and LiveView
(88 commits / 2 stars / 2021-09-26 )
179 | - [JohnB/phoenix_live_view_example](https://github.com/JohnB/phoenix_live_view_example) -
(83 commits / 4 stars / 2020-06-20 )
180 | - [nickdichev/markdown-live](https://github.com/nickdichev/markdown-live) - MarkdownLive is an example application using Phoenix LiveView which renders user-submitted Markdown on the server.
(81 commits / 41 stars / 2021-03-10 )
181 | - [alanvardy/rexex](https://github.com/alanvardy/rexex) - Elixir regular expression editor, inspired by Rubular
(72 commits / 0 stars / 2019-09-05 )
182 | - [martinstannard/soup](https://github.com/martinstannard/soup) - A multi-player boggle clone written with Phoenix LiveView
(67 commits / 5 stars / 2022-02-03 )
183 | - [jmschles/cribbex](https://github.com/jmschles/cribbex) - Cribbage in elixir!
(66 commits / 0 stars / 2021-05-03 )
184 | - [sasa1977/demo_system](https://github.com/sasa1977/demo_system) -
(66 commits / 180 stars / 2019-12-14 )
185 | - [joerichsen/phoenix_live_view_example](https://github.com/joerichsen/phoenix_live_view_example) -
(64 commits / 34 stars / 2019-06-15 )
186 | - [monjohn/phellow](https://github.com/monjohn/phellow) - A Trello Clone in Phoenix using LiveView
(59 commits / 14 stars / 2021-08-07 )
187 | - [smeade/phoenix_live_view_example](https://github.com/smeade/phoenix_live_view_example) -
(58 commits / 4 stars / 2019-03-18 )
188 | - [hurty/phoenix_live_view_example](https://github.com/hurty/phoenix_live_view_example) -
(55 commits / 19 stars / 2019-03-26 )
189 | - [alukasz/pentago](https://github.com/alukasz/pentago) - Implementation of board game Pentago
(54 commits / 3 stars / 2019-08-02 )
190 | - [angelikatyborska/falling_blocks](https://github.com/angelikatyborska/falling_blocks) - A simple game made with PhoenixLiveView
(54 commits / 15 stars / 2021-03-10 )
191 | - [mcrumm/live_upload_example](https://github.com/mcrumm/live_upload_example) - Demonstrating file uploads with Phoenix LiveView
(44 commits / 35 stars / 2022-01-24 )
192 | - [zkayser/pfds_visualizations](https://github.com/zkayser/pfds_visualizations) - A UI for visualizing purely functional data structures
(41 commits / 8 stars / 2019-05-18 )
193 | - [artsy/inflow](https://github.com/artsy/inflow) - Experiment - Artsy import app in Elixir/Phoenix
(35 commits / 3 stars / 2020-12-11 )
194 | - [mmmries/showoff](https://github.com/mmmries/showoff) - A small elixir service for playing with the ChunkySVG library
(34 commits / 6 stars / 2021-11-27 )
195 | - [DataKrewTech/AcqDat](https://github.com/DataKrewTech/AcqDat) - IoT Data Acquisition and Visualization Engine
(28 commits / 0 stars / 2020-01-16 )
196 | - [aleph-naught2tog/live_tinkering](https://github.com/aleph-naught2tog/live_tinkering) - Little toy demos for Phoenix LiveView
(25 commits / 29 stars / 2019-03-21 )
197 | - [padde/scrumpokr](https://github.com/padde/scrumpokr) - Online Scrum poker for remote software development teams
(25 commits / 3 stars / 2020-04-08 )
198 | - [Echoes93/flood](https://github.com/Echoes93/flood) -
(22 commits / 0 stars / 2019-07-12 )
199 | - [dsdshcym/phoenix_live_view_sudoku](https://github.com/dsdshcym/phoenix_live_view_sudoku) - A Sudoku solver written with Elixir, Phoenix, and Phoenix LiveView
(21 commits / 12 stars / 2019-07-26 )
200 | - [dorilla/live_view_black_jack](https://github.com/dorilla/live_view_black_jack) - BlackJack https://polite-angelic-beaver.gigalixirapp.com/
(20 commits / 58 stars / 2019-04-04 )
201 | - [dmitriid/phreak](https://github.com/dmitriid/phreak) - Kubernetes Dashboard with Phoenix LiveView
(19 commits / 17 stars / 2020-03-16 )
202 | - [guitsaru/rest_client](https://github.com/guitsaru/rest_client) - A REST client made with Phoenix LiveView
(19 commits / 23 stars / 2020-09-29 )
203 | - [syfgkjasdkn/lazy-live-view](https://github.com/syfgkjasdkn/lazy-live-view) -
(17 commits / 3 stars / 2020-06-02 )
204 | - [andreaseriksson/poor_man_spa](https://github.com/andreaseriksson/poor_man_spa) - Proof of concept for a SPA with Phoenix Live View, Turbolinks and Rails UJS
(16 commits / 4 stars / 2019-06-10 )
205 | - [zorbash/observer_live](https://github.com/zorbash/observer_live) - A port of observer_cli using LiveView
(13 commits / 208 stars / 2020-02-20 )
206 | - [elixirschool/live-view-chat](https://github.com/elixirschool/live-view-chat) - A chat app built with Phoenix LiveView, PubSub and Presence
(12 commits / 48 stars / 2020-04-22 )
207 | - [toranb/elixir-match](https://github.com/toranb/elixir-match) - The original source code for https://elixirmatch.com
(12 commits / 38 stars / 2019-04-03 )
208 | - [barboza/chatter](https://github.com/barboza/chatter) - A simple chat application using Phoenix Live View
(11 commits / 2 stars / 2019-09-18 )
209 | - [mnussbaumer/cocktail](https://github.com/mnussbaumer/cocktail) - A LiveView Test of a Visual HTML Editor server side rendered
(11 commits / 0 stars / 2019-05-15 )
210 | - [tuacker/phoenix_live_view_form_steps](https://github.com/tuacker/phoenix_live_view_form_steps) - Small test to try and split a form into multiple steps using Phoenix Live View
(11 commits / 5 stars / 2019-05-31 )
211 | - [bigardone/phoenix-liveview-ant-farm](https://github.com/bigardone/phoenix-liveview-ant-farm) - Concurrent ant farm with Elixir and Phoenix LiveView
(10 commits / 62 stars / 2019-05-11 )
212 | - [SophieDeBenedetto/phat](https://github.com/SophieDeBenedetto/phat) - A Phoenix chat app built with LiveView, PubSub and Presence
(9 commits / 37 stars / 2019-05-12 )
213 | - [eteubert/open_adventure_capitalist](https://github.com/eteubert/open_adventure_capitalist) - A Phoenix LiveView experiment. Simple implementation of Adventure Capitalist.
(7 commits / 13 stars / 2019-03-17 )
214 | - [jeffkreeftmeijer/hayago](https://github.com/jeffkreeftmeijer/hayago) - The Go game, implemented with Phoenix LiveView.
(7 commits / 56 stars / 2020-12-31 )
215 | - [PJUllrich/e2e-testing-with-cypress](https://github.com/PJUllrich/e2e-testing-with-cypress) - Auxiliary code to the talk: End-2-End Testing with Cypress
(7 commits / 2 stars / 2019-10-22 )
216 | - [zblanco/libu](https://github.com/zblanco/libu) - A series of experiments built with Elixir, Phoenix, LiveView, and Tailwind CSS.
(7 commits / 20 stars / 2019-03-26 )
217 | - [amberbit/board](https://github.com/amberbit/board) - An example Elixir + Phoenix + OTP + LiveView app
(6 commits / 15 stars / 2019-05-15 )
218 | - [cadebward/live_view_surface_editor](https://github.com/cadebward/live_view_surface_editor) - An example repo that uses LV hooks to integrate the ACE editor
(6 commits / 1 stars / 2020-01-16 )
219 | - [garthk/live_bg_demo](https://github.com/garthk/live_bg_demo) -
(6 commits / 1 stars / 2020-11-04 )
220 | - [dersnek/chirp](https://github.com/dersnek/chirp) - A real-time Twitter clone with LiveView and Phoenix 1.5 (https://youtu.be/MZvmYaFkNJI)
(5 commits / 95 stars / 2021-01-25 )
221 | - [thomasbrus/phoenix-live-view-soccer-table](https://github.com/thomasbrus/phoenix-live-view-soccer-table) - Soccer Table (Phoenix LiveView Demo)
(5 commits / 1 stars / 2019-04-23 )
222 | - [coletiv/blog-phoenix-live-view-google-maps](https://github.com/coletiv/blog-phoenix-live-view-google-maps) - How to use Google Maps with Phoenix Live View
(4 commits / 4 stars / 2020-07-14 )
223 | - [drumusician/elixir_conf_live_view_dashboard](https://github.com/drumusician/elixir_conf_live_view_dashboard) - A LiveView Dashboard with ElixirConf Stats
(4 commits / 16 stars / 2019-04-03 )
224 | - [nicolasblanco/booking_calendar](https://github.com/nicolasblanco/booking_calendar) -
(4 commits / 18 stars / 2019-04-15 )
225 | - [CassiusPacheco/live_chat](https://github.com/CassiusPacheco/live_chat) - A simple (non-optimised) real-time chat built with Phoenix LiveView
(3 commits / 2 stars / 2019-03-31 )
226 | - [benvp/liveview_autocomplete](https://github.com/benvp/liveview_autocomplete) - A simple but powerful autocomplete using Phoenix LiveView and Alpine.js
(2 commits / 11 stars / 2020-07-11 )
227 | - [future-cyborg/phoenix_example_multi_nested_form](https://github.com/future-cyborg/phoenix_example_multi_nested_form) - This is an example repo of how to work with nested forms while using Phoenix LiveView.
(2 commits / 1 stars / 2019-05-28 )
228 | - [ckampfe/rere](https://github.com/ckampfe/rere) -
(1 commits / 6 stars / 2019-03-28 )
229 | - [dashbitco/bytepack_archive](https://github.com/dashbitco/bytepack_archive) - Archive of bytepack.io
(1 commits / 295 stars / 2020-12-03 )
230 |
231 | [⬆ Navigation](#navigation)
232 |
233 | ### By Activity
234 |
235 | - [pedromtavares/moba](https://github.com/pedromtavares/moba) - A turn-based browser RPG built with Phoenix LiveView
( 2022-02-05 / 191 commits / 132 stars )
236 | - [fly-apps/live_beats](https://github.com/fly-apps/live_beats) -
( 2022-02-04 / 226 commits / 370 stars )
237 | - [livebook-dev/livebook](https://github.com/livebook-dev/livebook) - Interactive and collaborative code notebooks for Elixir - made with Phoenix LiveView
( 2022-02-04 / 922 commits / 2415 stars )
238 | - [martinstannard/soup](https://github.com/martinstannard/soup) - A multi-player boggle clone written with Phoenix LiveView
( 2022-02-03 / 67 commits / 5 stars )
239 | - [surface-ui/surface](https://github.com/surface-ui/surface) - A server-side rendering component library for Phoenix
( 2022-02-03 / 575 commits / 1559 stars )
240 | - [Glimesh/glimesh.tv](https://github.com/Glimesh/glimesh.tv) - Glimesh is a next generation live streaming platform built by the community, for the community.
( 2022-02-02 / 829 commits / 292 stars )
241 | - [fremantle-industries/workbench](https://github.com/fremantle-industries/workbench) - From Idea to Execution - Manage your trading operation across a distributed cluster
( 2022-02-02 / 924 commits / 83 stars )
242 | - [pentacent/keila](https://github.com/pentacent/keila) - Open Source Newsletter Tool.
( 2022-01-31 / 423 commits / 450 stars )
243 | - [wyeworks/elixir_console](https://github.com/wyeworks/elixir_console) - Elixir Web Console
( 2022-01-28 / 467 commits / 67 stars )
244 | - [archethic-foundation/archethic-node](https://github.com/archethic-foundation/archethic-node) - Official ArchEthic Blockchain node, written in Elixir
( 2022-01-27 / 746 commits / 24 stars )
245 | - [seb3s/kandesk](https://github.com/seb3s/kandesk) - Simple Kanban application written in elixir using phoenix liveview
( 2022-01-26 / 346 commits / 134 stars )
246 | - [mcrumm/live_upload_example](https://github.com/mcrumm/live_upload_example) - Demonstrating file uploads with Phoenix LiveView
( 2022-01-24 / 44 commits / 35 stars )
247 | - [tonyc/open890](https://github.com/tonyc/open890) - A web-based remote UI for the Kenwood TS-890.
( 2022-01-22 / 686 commits / 41 stars )
248 | - [barsoom/ex-remit](https://github.com/barsoom/ex-remit) - A self-hosted web app for commit-by-commit code review, written using Phoenix LiveView.
( 2022-01-19 / 586 commits / 18 stars )
249 | - [Logflare/logflare](https://github.com/Logflare/logflare) - Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript.
( 2022-01-18 / 4543 commits / 356 stars )
250 | - [code-shoily/covid19](https://github.com/code-shoily/covid19) - A Phoenix app to display Novel Coronavirus (COVID-19)
( 2022-01-02 / 268 commits / 90 stars )
251 | - [sgobotta/live_dj](https://github.com/sgobotta/live_dj) - 💿 Join or create video playlists to share a real-time experience with others! 🎧
( 2021-12-27 / 1226 commits / 18 stars )
252 | - [Sanchos01/Phoenix-Sea-Battle](https://github.com/Sanchos01/Phoenix-Sea-Battle) - Battleship, using Phoenix framework (LiveView)
( 2021-12-20 / 132 commits / 8 stars )
253 | - [fully-forged/tune](https://github.com/fully-forged/tune) - A streamlined Spotify client and browser with a focus on performance and integrations.
( 2021-12-03 / 587 commits / 197 stars )
254 | - [mmmries/showoff](https://github.com/mmmries/showoff) - A small elixir service for playing with the ChunkySVG library
( 2021-11-27 / 34 commits / 6 stars )
255 | - [BigTom/changeban](https://github.com/BigTom/changeban) -
( 2021-10-17 / 131 commits / 0 stars )
256 | - [H12/foss_retro](https://github.com/H12/foss_retro) - A simple retro tool built with Phoenix LiveView and OTP
( 2021-10-13 / 136 commits / 3 stars )
257 | - [fully-forged/memento](https://github.com/fully-forged/memento) - Collect saved items from different sources around the web
( 2021-10-04 / 267 commits / 96 stars )
258 | - [coingaming/bennu](https://github.com/coingaming/bennu) - Component system and rendering engine for Phoenix and LiveView
( 2021-09-26 / 88 commits / 2 stars )
259 | - [chrismccord/phoenix_live_view_example](https://github.com/chrismccord/phoenix_live_view_example) -
( 2021-09-24 / 112 commits / 488 stars )
260 | - [topherhunt/reassembling-the-line](https://github.com/topherhunt/reassembling-the-line) - Record video interviews where people share first-hand experience on an important topic. Code each segment of the video by theme. Explore the results using a novel filterable segment playback UI. Demo: https://rtl-demo1.herokuapp.com/
( 2021-09-23 / 280 commits / 1 stars )
261 | - [DEalog/backoffice](https://github.com/DEalog/backoffice) - The backoffice application for the DEalog platform
( 2021-09-16 / 194 commits / 4 stars )
262 | - [dnsbty/level10](https://github.com/dnsbty/level10) - Phoenix LiveView multiplayer card game
( 2021-09-09 / 267 commits / 40 stars )
263 | - [axelclark/ex338](https://github.com/axelclark/ex338) - Web application to manage the 338 Challenge fantasy sports league
( 2021-08-15 / 916 commits / 16 stars )
264 | - [monjohn/phellow](https://github.com/monjohn/phellow) - A Trello Clone in Phoenix using LiveView
( 2021-08-07 / 59 commits / 14 stars )
265 | - [mitchellhenke/mprop](https://github.com/mitchellhenke/mprop) -
( 2021-05-08 / 206 commits / 9 stars )
266 | - [jmschles/cribbex](https://github.com/jmschles/cribbex) - Cribbage in elixir!
( 2021-05-03 / 66 commits / 0 stars )
267 | - [vorce/lasso](https://github.com/vorce/lasso) - Real-time UI for webhooks
( 2021-03-19 / 226 commits / 26 stars )
268 | - [angelikatyborska/falling_blocks](https://github.com/angelikatyborska/falling_blocks) - A simple game made with PhoenixLiveView
( 2021-03-10 / 54 commits / 15 stars )
269 | - [nickdichev/markdown-live](https://github.com/nickdichev/markdown-live) - MarkdownLive is an example application using Phoenix LiveView which renders user-submitted Markdown on the server.
( 2021-03-10 / 81 commits / 41 stars )
270 | - [oestrich/grapevine](https://github.com/oestrich/grapevine) - The MUD Chat Network
( 2021-02-16 / 1209 commits / 138 stars )
271 | - [dersnek/chirp](https://github.com/dersnek/chirp) - A real-time Twitter clone with LiveView and Phoenix 1.5 (https://youtu.be/MZvmYaFkNJI)
( 2021-01-25 / 5 commits / 95 stars )
272 | - [FlyingDutchmanGames/battle_box](https://github.com/FlyingDutchmanGames/battle_box) - The Open Source Bot Battle Engine
( 2021-01-06 / 1200 commits / 2 stars )
273 | - [jeffkreeftmeijer/hayago](https://github.com/jeffkreeftmeijer/hayago) - The Go game, implemented with Phoenix LiveView.
( 2020-12-31 / 7 commits / 56 stars )
274 | - [artsy/inflow](https://github.com/artsy/inflow) - Experiment - Artsy import app in Elixir/Phoenix
( 2020-12-11 / 35 commits / 3 stars )
275 | - [dashbitco/bytepack_archive](https://github.com/dashbitco/bytepack_archive) - Archive of bytepack.io
( 2020-12-03 / 1 commits / 295 stars )
276 | - [happycodrz/bordo](https://github.com/happycodrz/bordo) - mirror / backup from github.com/bordosocial/bordo
( 2020-12-02 / 879 commits / 0 stars )
277 | - [garthk/live_bg_demo](https://github.com/garthk/live_bg_demo) -
( 2020-11-04 / 6 commits / 1 stars )
278 | - [moomerman/flappy-phoenix](https://github.com/moomerman/flappy-phoenix) - 🐦 Flappy Bird clone written in Elixir using Phoenix LiveView to render the game UI from the server.
( 2020-10-17 / 256 commits / 71 stars )
279 | - [gaslight/live_deck](https://github.com/gaslight/live_deck) - A Real-Time Presentation Application Powered by Phoenix LiveView
( 2020-10-02 / 241 commits / 66 stars )
280 | - [guitsaru/rest_client](https://github.com/guitsaru/rest_client) - A REST client made with Phoenix LiveView
( 2020-09-29 / 19 commits / 23 stars )
281 | - [neslinesli93/breakoutex](https://github.com/neslinesli93/breakoutex) - A breakout clone written in pure Elixir, using Phoenix LiveView
( 2020-09-09 / 93 commits / 34 stars )
282 | - [stevegrossi/sengoku](https://github.com/stevegrossi/sengoku) - An online Risk-like game built with Elixir and Phoenix LiveView
( 2020-08-28 / 447 commits / 56 stars )
283 | - [coletiv/blog-phoenix-live-view-google-maps](https://github.com/coletiv/blog-phoenix-live-view-google-maps) - How to use Google Maps with Phoenix Live View
( 2020-07-14 / 4 commits / 4 stars )
284 | - [benvp/liveview_autocomplete](https://github.com/benvp/liveview_autocomplete) - A simple but powerful autocomplete using Phoenix LiveView and Alpine.js
( 2020-07-11 / 2 commits / 11 stars )
285 | - [JohnB/phoenix_live_view_example](https://github.com/JohnB/phoenix_live_view_example) -
( 2020-06-20 / 83 commits / 4 stars )
286 | - [kuroda/live_dendron](https://github.com/kuroda/live_dendron) - Live Dendron - a Phoenix LiveView demo
( 2020-06-03 / 95 commits / 5 stars )
287 | - [syfgkjasdkn/lazy-live-view](https://github.com/syfgkjasdkn/lazy-live-view) -
( 2020-06-02 / 17 commits / 3 stars )
288 | - [mreishus/demon_spirit_umbrella](https://github.com/mreishus/demon_spirit_umbrella) - Demon Spirit is an abstract board game played on a 5x5 grid.
( 2020-05-18 / 429 commits / 10 stars )
289 | - [elixirschool/live-view-chat](https://github.com/elixirschool/live-view-chat) - A chat app built with Phoenix LiveView, PubSub and Presence
( 2020-04-22 / 12 commits / 48 stars )
290 | - [padde/scrumpokr](https://github.com/padde/scrumpokr) - Online Scrum poker for remote software development teams
( 2020-04-08 / 25 commits / 3 stars )
291 | - [dmitriid/phreak](https://github.com/dmitriid/phreak) - Kubernetes Dashboard with Phoenix LiveView
( 2020-03-16 / 19 commits / 17 stars )
292 | - [ramortegui/phoenix_trivia](https://github.com/ramortegui/phoenix_trivia) - Phoenix trivia is a Real Time Multiplayer game developed using Elixir without the need to write javascript
( 2020-02-26 / 102 commits / 13 stars )
293 | - [zorbash/observer_live](https://github.com/zorbash/observer_live) - A port of observer_cli using LiveView
( 2020-02-20 / 13 commits / 208 stars )
294 | - [cadebward/live_view_surface_editor](https://github.com/cadebward/live_view_surface_editor) - An example repo that uses LV hooks to integrate the ACE editor
( 2020-01-16 / 6 commits / 1 stars )
295 | - [DataKrewTech/AcqDat](https://github.com/DataKrewTech/AcqDat) - IoT Data Acquisition and Visualization Engine
( 2020-01-16 / 28 commits / 0 stars )
296 | - [sasa1977/demo_system](https://github.com/sasa1977/demo_system) -
( 2019-12-14 / 66 commits / 180 stars )
297 | - [djthread/lucidboard](https://github.com/djthread/lucidboard) - A realtime, collaborative kanban tool, built on Elixir, Phoenix, and LiveView.
( 2019-12-12 / 281 commits / 80 stars )
298 | - [PJUllrich/e2e-testing-with-cypress](https://github.com/PJUllrich/e2e-testing-with-cypress) - Auxiliary code to the talk: End-2-End Testing with Cypress
( 2019-10-22 / 7 commits / 2 stars )
299 | - [zkayser/georacer](https://github.com/zkayser/georacer) - GeoRacer -- The Hot Cold GeoRacing App With Phoenix LiveView Driving Webcomponents and SVGs!
( 2019-10-02 / 215 commits / 62 stars )
300 | - [barboza/chatter](https://github.com/barboza/chatter) - A simple chat application using Phoenix Live View
( 2019-09-18 / 11 commits / 2 stars )
301 | - [DefactoSoftware/BearNecessities](https://github.com/DefactoSoftware/BearNecessities) - Multiplayer bear game with Phoenix Live View
( 2019-09-17 / 260 commits / 19 stars )
302 | - [alanvardy/rexex](https://github.com/alanvardy/rexex) - Elixir regular expression editor, inspired by Rubular
( 2019-09-05 / 72 commits / 0 stars )
303 | - [makerion/makerion](https://github.com/makerion/makerion) -
( 2019-08-10 / 129 commits / 3 stars )
304 | - [alukasz/pentago](https://github.com/alukasz/pentago) - Implementation of board game Pentago
( 2019-08-02 / 54 commits / 3 stars )
305 | - [dsdshcym/phoenix_live_view_sudoku](https://github.com/dsdshcym/phoenix_live_view_sudoku) - A Sudoku solver written with Elixir, Phoenix, and Phoenix LiveView
( 2019-07-26 / 21 commits / 12 stars )
306 | - [Echoes93/flood](https://github.com/Echoes93/flood) -
( 2019-07-12 / 22 commits / 0 stars )
307 | - [joerichsen/phoenix_live_view_example](https://github.com/joerichsen/phoenix_live_view_example) -
( 2019-06-15 / 64 commits / 34 stars )
308 | - [andreaseriksson/poor_man_spa](https://github.com/andreaseriksson/poor_man_spa) - Proof of concept for a SPA with Phoenix Live View, Turbolinks and Rails UJS
( 2019-06-10 / 16 commits / 4 stars )
309 | - [imartinat/phoenix_live_view_tablefilter](https://github.com/imartinat/phoenix_live_view_tablefilter) - Table Filter with Phoenix LiveView
( 2019-06-08 / 91 commits / 15 stars )
310 | - [tuacker/phoenix_live_view_form_steps](https://github.com/tuacker/phoenix_live_view_form_steps) - Small test to try and split a form into multiple steps using Phoenix Live View
( 2019-05-31 / 11 commits / 5 stars )
311 | - [future-cyborg/phoenix_example_multi_nested_form](https://github.com/future-cyborg/phoenix_example_multi_nested_form) - This is an example repo of how to work with nested forms while using Phoenix LiveView.
( 2019-05-28 / 2 commits / 1 stars )
312 | - [zkayser/pfds_visualizations](https://github.com/zkayser/pfds_visualizations) - A UI for visualizing purely functional data structures
( 2019-05-18 / 41 commits / 8 stars )
313 | - [mnussbaumer/cocktail](https://github.com/mnussbaumer/cocktail) - A LiveView Test of a Visual HTML Editor server side rendered
( 2019-05-15 / 11 commits / 0 stars )
314 | - [amberbit/board](https://github.com/amberbit/board) - An example Elixir + Phoenix + OTP + LiveView app
( 2019-05-15 / 6 commits / 15 stars )
315 | - [SophieDeBenedetto/phat](https://github.com/SophieDeBenedetto/phat) - A Phoenix chat app built with LiveView, PubSub and Presence
( 2019-05-12 / 9 commits / 37 stars )
316 | - [bigardone/phoenix-liveview-ant-farm](https://github.com/bigardone/phoenix-liveview-ant-farm) - Concurrent ant farm with Elixir and Phoenix LiveView
( 2019-05-11 / 10 commits / 62 stars )
317 | - [thomasbrus/phoenix-live-view-soccer-table](https://github.com/thomasbrus/phoenix-live-view-soccer-table) - Soccer Table (Phoenix LiveView Demo)
( 2019-04-23 / 5 commits / 1 stars )
318 | - [nicolasblanco/booking_calendar](https://github.com/nicolasblanco/booking_calendar) -
( 2019-04-15 / 4 commits / 18 stars )
319 | - [dorilla/live_view_black_jack](https://github.com/dorilla/live_view_black_jack) - BlackJack https://polite-angelic-beaver.gigalixirapp.com/
( 2019-04-04 / 20 commits / 58 stars )
320 | - [toranb/elixir-match](https://github.com/toranb/elixir-match) - The original source code for https://elixirmatch.com
( 2019-04-03 / 12 commits / 38 stars )
321 | - [drumusician/elixir_conf_live_view_dashboard](https://github.com/drumusician/elixir_conf_live_view_dashboard) - A LiveView Dashboard with ElixirConf Stats
( 2019-04-03 / 4 commits / 16 stars )
322 | - [CassiusPacheco/live_chat](https://github.com/CassiusPacheco/live_chat) - A simple (non-optimised) real-time chat built with Phoenix LiveView
( 2019-03-31 / 3 commits / 2 stars )
323 | - [ckampfe/rere](https://github.com/ckampfe/rere) -
( 2019-03-28 / 1 commits / 6 stars )
324 | - [hurty/phoenix_live_view_example](https://github.com/hurty/phoenix_live_view_example) -
( 2019-03-26 / 55 commits / 19 stars )
325 | - [zblanco/libu](https://github.com/zblanco/libu) - A series of experiments built with Elixir, Phoenix, LiveView, and Tailwind CSS.
( 2019-03-26 / 7 commits / 20 stars )
326 | - [aleph-naught2tog/live_tinkering](https://github.com/aleph-naught2tog/live_tinkering) - Little toy demos for Phoenix LiveView
( 2019-03-21 / 25 commits / 29 stars )
327 | - [smeade/phoenix_live_view_example](https://github.com/smeade/phoenix_live_view_example) -
( 2019-03-18 / 58 commits / 4 stars )
328 | - [eteubert/open_adventure_capitalist](https://github.com/eteubert/open_adventure_capitalist) - A Phoenix LiveView experiment. Simple implementation of Adventure Capitalist.
( 2019-03-17 / 7 commits / 13 stars )
329 |
330 |
331 | [⬆ Navigation](#navigation)
332 |
333 | ### By Popularity
334 |
335 | - [livebook-dev/livebook](https://github.com/livebook-dev/livebook) - Interactive and collaborative code notebooks for Elixir - made with Phoenix LiveView
(2415 stars / 2022-02-04 / 922 commits )
336 | - [surface-ui/surface](https://github.com/surface-ui/surface) - A server-side rendering component library for Phoenix
(1559 stars / 2022-02-03 / 575 commits )
337 | - [chrismccord/phoenix_live_view_example](https://github.com/chrismccord/phoenix_live_view_example) -
(488 stars / 2021-09-24 / 112 commits )
338 | - [pentacent/keila](https://github.com/pentacent/keila) - Open Source Newsletter Tool.
(450 stars / 2022-01-31 / 423 commits )
339 | - [fly-apps/live_beats](https://github.com/fly-apps/live_beats) -
(370 stars / 2022-02-04 / 226 commits )
340 | - [Logflare/logflare](https://github.com/Logflare/logflare) - Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript.
(356 stars / 2022-01-18 / 4543 commits )
341 | - [dashbitco/bytepack_archive](https://github.com/dashbitco/bytepack_archive) - Archive of bytepack.io
(295 stars / 2020-12-03 / 1 commits )
342 | - [Glimesh/glimesh.tv](https://github.com/Glimesh/glimesh.tv) - Glimesh is a next generation live streaming platform built by the community, for the community.
(292 stars / 2022-02-02 / 829 commits )
343 | - [zorbash/observer_live](https://github.com/zorbash/observer_live) - A port of observer_cli using LiveView
(208 stars / 2020-02-20 / 13 commits )
344 | - [fully-forged/tune](https://github.com/fully-forged/tune) - A streamlined Spotify client and browser with a focus on performance and integrations.
(197 stars / 2021-12-03 / 587 commits )
345 | - [sasa1977/demo_system](https://github.com/sasa1977/demo_system) -
(180 stars / 2019-12-14 / 66 commits )
346 | - [oestrich/grapevine](https://github.com/oestrich/grapevine) - The MUD Chat Network
(138 stars / 2021-02-16 / 1209 commits )
347 | - [seb3s/kandesk](https://github.com/seb3s/kandesk) - Simple Kanban application written in elixir using phoenix liveview
(134 stars / 2022-01-26 / 346 commits )
348 | - [pedromtavares/moba](https://github.com/pedromtavares/moba) - A turn-based browser RPG built with Phoenix LiveView
(132 stars / 2022-02-05 / 191 commits )
349 | - [fully-forged/memento](https://github.com/fully-forged/memento) - Collect saved items from different sources around the web
(96 stars / 2021-10-04 / 267 commits )
350 | - [dersnek/chirp](https://github.com/dersnek/chirp) - A real-time Twitter clone with LiveView and Phoenix 1.5 (https://youtu.be/MZvmYaFkNJI)
(95 stars / 2021-01-25 / 5 commits )
351 | - [code-shoily/covid19](https://github.com/code-shoily/covid19) - A Phoenix app to display Novel Coronavirus (COVID-19)
(90 stars / 2022-01-02 / 268 commits )
352 | - [fremantle-industries/workbench](https://github.com/fremantle-industries/workbench) - From Idea to Execution - Manage your trading operation across a distributed cluster
(83 stars / 2022-02-02 / 924 commits )
353 | - [djthread/lucidboard](https://github.com/djthread/lucidboard) - A realtime, collaborative kanban tool, built on Elixir, Phoenix, and LiveView.
(80 stars / 2019-12-12 / 281 commits )
354 | - [moomerman/flappy-phoenix](https://github.com/moomerman/flappy-phoenix) - 🐦 Flappy Bird clone written in Elixir using Phoenix LiveView to render the game UI from the server.
(71 stars / 2020-10-17 / 256 commits )
355 | - [wyeworks/elixir_console](https://github.com/wyeworks/elixir_console) - Elixir Web Console
(67 stars / 2022-01-28 / 467 commits )
356 | - [gaslight/live_deck](https://github.com/gaslight/live_deck) - A Real-Time Presentation Application Powered by Phoenix LiveView
(66 stars / 2020-10-02 / 241 commits )
357 | - [bigardone/phoenix-liveview-ant-farm](https://github.com/bigardone/phoenix-liveview-ant-farm) - Concurrent ant farm with Elixir and Phoenix LiveView
(62 stars / 2019-05-11 / 10 commits )
358 | - [zkayser/georacer](https://github.com/zkayser/georacer) - GeoRacer -- The Hot Cold GeoRacing App With Phoenix LiveView Driving Webcomponents and SVGs!
(62 stars / 2019-10-02 / 215 commits )
359 | - [dorilla/live_view_black_jack](https://github.com/dorilla/live_view_black_jack) - BlackJack https://polite-angelic-beaver.gigalixirapp.com/
(58 stars / 2019-04-04 / 20 commits )
360 | - [jeffkreeftmeijer/hayago](https://github.com/jeffkreeftmeijer/hayago) - The Go game, implemented with Phoenix LiveView.
(56 stars / 2020-12-31 / 7 commits )
361 | - [stevegrossi/sengoku](https://github.com/stevegrossi/sengoku) - An online Risk-like game built with Elixir and Phoenix LiveView
(56 stars / 2020-08-28 / 447 commits )
362 | - [elixirschool/live-view-chat](https://github.com/elixirschool/live-view-chat) - A chat app built with Phoenix LiveView, PubSub and Presence
(48 stars / 2020-04-22 / 12 commits )
363 | - [nickdichev/markdown-live](https://github.com/nickdichev/markdown-live) - MarkdownLive is an example application using Phoenix LiveView which renders user-submitted Markdown on the server.
(41 stars / 2021-03-10 / 81 commits )
364 | - [tonyc/open890](https://github.com/tonyc/open890) - A web-based remote UI for the Kenwood TS-890.
(41 stars / 2022-01-22 / 686 commits )
365 | - [dnsbty/level10](https://github.com/dnsbty/level10) - Phoenix LiveView multiplayer card game
(40 stars / 2021-09-09 / 267 commits )
366 | - [toranb/elixir-match](https://github.com/toranb/elixir-match) - The original source code for https://elixirmatch.com
(38 stars / 2019-04-03 / 12 commits )
367 | - [SophieDeBenedetto/phat](https://github.com/SophieDeBenedetto/phat) - A Phoenix chat app built with LiveView, PubSub and Presence
(37 stars / 2019-05-12 / 9 commits )
368 | - [mcrumm/live_upload_example](https://github.com/mcrumm/live_upload_example) - Demonstrating file uploads with Phoenix LiveView
(35 stars / 2022-01-24 / 44 commits )
369 | - [joerichsen/phoenix_live_view_example](https://github.com/joerichsen/phoenix_live_view_example) -
(34 stars / 2019-06-15 / 64 commits )
370 | - [neslinesli93/breakoutex](https://github.com/neslinesli93/breakoutex) - A breakout clone written in pure Elixir, using Phoenix LiveView
(34 stars / 2020-09-09 / 93 commits )
371 | - [aleph-naught2tog/live_tinkering](https://github.com/aleph-naught2tog/live_tinkering) - Little toy demos for Phoenix LiveView
(29 stars / 2019-03-21 / 25 commits )
372 | - [vorce/lasso](https://github.com/vorce/lasso) - Real-time UI for webhooks
(26 stars / 2021-03-19 / 226 commits )
373 | - [archethic-foundation/archethic-node](https://github.com/archethic-foundation/archethic-node) - Official ArchEthic Blockchain node, written in Elixir
(24 stars / 2022-01-27 / 746 commits )
374 | - [guitsaru/rest_client](https://github.com/guitsaru/rest_client) - A REST client made with Phoenix LiveView
(23 stars / 2020-09-29 / 19 commits )
375 | - [zblanco/libu](https://github.com/zblanco/libu) - A series of experiments built with Elixir, Phoenix, LiveView, and Tailwind CSS.
(20 stars / 2019-03-26 / 7 commits )
376 | - [DefactoSoftware/BearNecessities](https://github.com/DefactoSoftware/BearNecessities) - Multiplayer bear game with Phoenix Live View
(19 stars / 2019-09-17 / 260 commits )
377 | - [hurty/phoenix_live_view_example](https://github.com/hurty/phoenix_live_view_example) -
(19 stars / 2019-03-26 / 55 commits )
378 | - [barsoom/ex-remit](https://github.com/barsoom/ex-remit) - A self-hosted web app for commit-by-commit code review, written using Phoenix LiveView.
(18 stars / 2022-01-19 / 586 commits )
379 | - [nicolasblanco/booking_calendar](https://github.com/nicolasblanco/booking_calendar) -
(18 stars / 2019-04-15 / 4 commits )
380 | - [sgobotta/live_dj](https://github.com/sgobotta/live_dj) - 💿 Join or create video playlists to share a real-time experience with others! 🎧
(18 stars / 2021-12-27 / 1226 commits )
381 | - [dmitriid/phreak](https://github.com/dmitriid/phreak) - Kubernetes Dashboard with Phoenix LiveView
(17 stars / 2020-03-16 / 19 commits )
382 | - [axelclark/ex338](https://github.com/axelclark/ex338) - Web application to manage the 338 Challenge fantasy sports league
(16 stars / 2021-08-15 / 916 commits )
383 | - [drumusician/elixir_conf_live_view_dashboard](https://github.com/drumusician/elixir_conf_live_view_dashboard) - A LiveView Dashboard with ElixirConf Stats
(16 stars / 2019-04-03 / 4 commits )
384 | - [amberbit/board](https://github.com/amberbit/board) - An example Elixir + Phoenix + OTP + LiveView app
(15 stars / 2019-05-15 / 6 commits )
385 | - [angelikatyborska/falling_blocks](https://github.com/angelikatyborska/falling_blocks) - A simple game made with PhoenixLiveView
(15 stars / 2021-03-10 / 54 commits )
386 | - [imartinat/phoenix_live_view_tablefilter](https://github.com/imartinat/phoenix_live_view_tablefilter) - Table Filter with Phoenix LiveView
(15 stars / 2019-06-08 / 91 commits )
387 | - [monjohn/phellow](https://github.com/monjohn/phellow) - A Trello Clone in Phoenix using LiveView
(14 stars / 2021-08-07 / 59 commits )
388 | - [eteubert/open_adventure_capitalist](https://github.com/eteubert/open_adventure_capitalist) - A Phoenix LiveView experiment. Simple implementation of Adventure Capitalist.
(13 stars / 2019-03-17 / 7 commits )
389 | - [ramortegui/phoenix_trivia](https://github.com/ramortegui/phoenix_trivia) - Phoenix trivia is a Real Time Multiplayer game developed using Elixir without the need to write javascript
(13 stars / 2020-02-26 / 102 commits )
390 | - [dsdshcym/phoenix_live_view_sudoku](https://github.com/dsdshcym/phoenix_live_view_sudoku) - A Sudoku solver written with Elixir, Phoenix, and Phoenix LiveView
(12 stars / 2019-07-26 / 21 commits )
391 | - [benvp/liveview_autocomplete](https://github.com/benvp/liveview_autocomplete) - A simple but powerful autocomplete using Phoenix LiveView and Alpine.js
(11 stars / 2020-07-11 / 2 commits )
392 | - [mreishus/demon_spirit_umbrella](https://github.com/mreishus/demon_spirit_umbrella) - Demon Spirit is an abstract board game played on a 5x5 grid.
(10 stars / 2020-05-18 / 429 commits )
393 | - [mitchellhenke/mprop](https://github.com/mitchellhenke/mprop) -
(9 stars / 2021-05-08 / 206 commits )
394 | - [Sanchos01/Phoenix-Sea-Battle](https://github.com/Sanchos01/Phoenix-Sea-Battle) - Battleship, using Phoenix framework (LiveView)
(8 stars / 2021-12-20 / 132 commits )
395 | - [zkayser/pfds_visualizations](https://github.com/zkayser/pfds_visualizations) - A UI for visualizing purely functional data structures
(8 stars / 2019-05-18 / 41 commits )
396 | - [ckampfe/rere](https://github.com/ckampfe/rere) -
(6 stars / 2019-03-28 / 1 commits )
397 | - [mmmries/showoff](https://github.com/mmmries/showoff) - A small elixir service for playing with the ChunkySVG library
(6 stars / 2021-11-27 / 34 commits )
398 | - [kuroda/live_dendron](https://github.com/kuroda/live_dendron) - Live Dendron - a Phoenix LiveView demo
(5 stars / 2020-06-03 / 95 commits )
399 | - [martinstannard/soup](https://github.com/martinstannard/soup) - A multi-player boggle clone written with Phoenix LiveView
(5 stars / 2022-02-03 / 67 commits )
400 | - [tuacker/phoenix_live_view_form_steps](https://github.com/tuacker/phoenix_live_view_form_steps) - Small test to try and split a form into multiple steps using Phoenix Live View
(5 stars / 2019-05-31 / 11 commits )
401 | - [andreaseriksson/poor_man_spa](https://github.com/andreaseriksson/poor_man_spa) - Proof of concept for a SPA with Phoenix Live View, Turbolinks and Rails UJS
(4 stars / 2019-06-10 / 16 commits )
402 | - [coletiv/blog-phoenix-live-view-google-maps](https://github.com/coletiv/blog-phoenix-live-view-google-maps) - How to use Google Maps with Phoenix Live View
(4 stars / 2020-07-14 / 4 commits )
403 | - [DEalog/backoffice](https://github.com/DEalog/backoffice) - The backoffice application for the DEalog platform
(4 stars / 2021-09-16 / 194 commits )
404 | - [JohnB/phoenix_live_view_example](https://github.com/JohnB/phoenix_live_view_example) -
(4 stars / 2020-06-20 / 83 commits )
405 | - [smeade/phoenix_live_view_example](https://github.com/smeade/phoenix_live_view_example) -
(4 stars / 2019-03-18 / 58 commits )
406 | - [alukasz/pentago](https://github.com/alukasz/pentago) - Implementation of board game Pentago
(3 stars / 2019-08-02 / 54 commits )
407 | - [artsy/inflow](https://github.com/artsy/inflow) - Experiment - Artsy import app in Elixir/Phoenix
(3 stars / 2020-12-11 / 35 commits )
408 | - [H12/foss_retro](https://github.com/H12/foss_retro) - A simple retro tool built with Phoenix LiveView and OTP
(3 stars / 2021-10-13 / 136 commits )
409 | - [makerion/makerion](https://github.com/makerion/makerion) -
(3 stars / 2019-08-10 / 129 commits )
410 | - [padde/scrumpokr](https://github.com/padde/scrumpokr) - Online Scrum poker for remote software development teams
(3 stars / 2020-04-08 / 25 commits )
411 | - [syfgkjasdkn/lazy-live-view](https://github.com/syfgkjasdkn/lazy-live-view) -
(3 stars / 2020-06-02 / 17 commits )
412 | - [barboza/chatter](https://github.com/barboza/chatter) - A simple chat application using Phoenix Live View
(2 stars / 2019-09-18 / 11 commits )
413 | - [CassiusPacheco/live_chat](https://github.com/CassiusPacheco/live_chat) - A simple (non-optimised) real-time chat built with Phoenix LiveView
(2 stars / 2019-03-31 / 3 commits )
414 | - [coingaming/bennu](https://github.com/coingaming/bennu) - Component system and rendering engine for Phoenix and LiveView
(2 stars / 2021-09-26 / 88 commits )
415 | - [FlyingDutchmanGames/battle_box](https://github.com/FlyingDutchmanGames/battle_box) - The Open Source Bot Battle Engine
(2 stars / 2021-01-06 / 1200 commits )
416 | - [PJUllrich/e2e-testing-with-cypress](https://github.com/PJUllrich/e2e-testing-with-cypress) - Auxiliary code to the talk: End-2-End Testing with Cypress
(2 stars / 2019-10-22 / 7 commits )
417 | - [cadebward/live_view_surface_editor](https://github.com/cadebward/live_view_surface_editor) - An example repo that uses LV hooks to integrate the ACE editor
(1 stars / 2020-01-16 / 6 commits )
418 | - [future-cyborg/phoenix_example_multi_nested_form](https://github.com/future-cyborg/phoenix_example_multi_nested_form) - This is an example repo of how to work with nested forms while using Phoenix LiveView.
(1 stars / 2019-05-28 / 2 commits )
419 | - [garthk/live_bg_demo](https://github.com/garthk/live_bg_demo) -
(1 stars / 2020-11-04 / 6 commits )
420 | - [thomasbrus/phoenix-live-view-soccer-table](https://github.com/thomasbrus/phoenix-live-view-soccer-table) - Soccer Table (Phoenix LiveView Demo)
(1 stars / 2019-04-23 / 5 commits )
421 | - [topherhunt/reassembling-the-line](https://github.com/topherhunt/reassembling-the-line) - Record video interviews where people share first-hand experience on an important topic. Code each segment of the video by theme. Explore the results using a novel filterable segment playback UI. Demo: https://rtl-demo1.herokuapp.com/
(1 stars / 2021-09-23 / 280 commits )
422 | - [alanvardy/rexex](https://github.com/alanvardy/rexex) - Elixir regular expression editor, inspired by Rubular
(0 stars / 2019-09-05 / 72 commits )
423 | - [BigTom/changeban](https://github.com/BigTom/changeban) -
(0 stars / 2021-10-17 / 131 commits )
424 | - [DataKrewTech/AcqDat](https://github.com/DataKrewTech/AcqDat) - IoT Data Acquisition and Visualization Engine
(0 stars / 2020-01-16 / 28 commits )
425 | - [Echoes93/flood](https://github.com/Echoes93/flood) -
(0 stars / 2019-07-12 / 22 commits )
426 | - [happycodrz/bordo](https://github.com/happycodrz/bordo) - mirror / backup from github.com/bordosocial/bordo
(0 stars / 2020-12-02 / 879 commits )
427 | - [jmschles/cribbex](https://github.com/jmschles/cribbex) - Cribbage in elixir!
(0 stars / 2021-05-03 / 66 commits )
428 | - [mnussbaumer/cocktail](https://github.com/mnussbaumer/cocktail) - A LiveView Test of a Visual HTML Editor server side rendered
(0 stars / 2019-05-15 / 11 commits )
429 |
430 |
431 | [⬆ Navigation](#navigation)
432 |
433 |
434 | ## General Posts
435 | - [REAL WORLD PHOENIX |> SIGN UP FLOW SPA STYLE WITH LIVEVIEW! - 2019/12/18](https://www.theguild.nl/real-world-phoenix-sign-up-flow-spa-style-with-liveview/)
436 | - [Phoenix LiveView Tutorial: Handling Connection Errors & Push Notifications With JS Hooks - 2019/12](https://curiosum.dev/blog/elixir-phoenix-liveview-messenger-part-4)
437 | - [The Primitives of Phoenix LiveView - 2019/11/12](https://www.poeticoding.com/the-primitives-of-phoenix-liveview/)
438 | - [Using Select2 with Phoenix LiveView - 2019/07/11](https://www.poeticoding.com/using-select2-with-phoenix-liveview/)
439 | - [Phoenix LiveView Examples - 2019/05/29](https://10xdevelopers.com/articles/liveview-examples)
440 | - [LiveView storing Session Data on Redirect - 2019/05/21](https://10xdevelopers.com/articles/from-sockets-to-sessions-with-liveview)
441 | - [Phoenix LiveView live_link - 2019/06/26](https://www.poeticoding.com/phoenix-liveview-live_link/)
442 | - [Phoenix LiveView – Change the URL without refreshing the page - 2019/06/19](https://www.poeticoding.com/phoenix-liveview-change-the-url-without-refreshing-the-page/#pictures-example)
443 | - [Talking to the LiveView - Updating the Phoenix LiveViews from outside the process - 2019/04/19](https://medium.com/@iacobson/talking-to-the-liveview-7a19f7e45522)
444 | - [REAL WORLD PHOENIX |> A LIVEVIEW DASHBOARD - 2019/04/03](https://www.theguild.nl/real-world-phoenix-of-groter-dan-a-liveview-dashboard/)
445 | - [Phoenix Live View Debounce - 2019/05/26](https://dev.to/tizpuppi/phoenix-live-view-debounce-4icf)
446 | - https://elixircasts.io/phoenix-live-view
447 |
448 | - [CRUD with Live View Part 1 - 2019/06/06 - video](https://www.youtube.com/watch?v=0yFGEAXIn7E)
449 | - [Live Coding LiveView w/ Bruce Tate - 2019/04/04 - video](https://www.youtube.com/watch?v=-wzabRyc-0M)
450 |
451 |
452 | - **UPLOADING** [GIST EXAMPLE](https://gist.github.com/goofansu/e3f8551a596373ef6370208bfc7db78d) + https://twitter.com/goofansu/status/1320660510795198467
453 |
454 | ## Liveview Components
455 | - [Introduction to Phoenix LiveView LiveComponents - 2019/12/09](http://blog.pthompson.org/liveview-livecomponents-introduction)
456 | - [Creating a Modal LiveView LiveComponent - 2019/12/17](http://blog.pthompson.org/phoenix-liveview-livecomponent-modal)
457 |
458 | ## Videos
459 | - [ElixirConf 2019 - Friday Evening Keynote - 2019/08/30](https://www.youtube.com/watch?v=XhNv1ikZNLs)
460 | - [ElixirConf 2019 - Lighting Talk - Phoenix LiveView in Healthcare - Tyler Clemens - 2019/08/30](https://www.youtube.com/watch?v=3SWksXENYJg)
461 | - [ElixirConf 2019 - Beyond LiveView: Building Real-Time... - Sophie DeBenedetto - 2019/08/30](https://www.youtube.com/watch?v=AbNAuOQ8wBE)
462 | - [ElixirConf 2019 - Phoenix LiveView Demystified - Alex Garibay - 2019/08/30](https://www.youtube.com/watch?v=9eOo8hSbMAc)
463 | - [ElixirConf 2019 - How LiveView Handles File Uploads - Gary Rennie - 2019/08/30](https://www.youtube.com/watch?v=svpk-hKvTNk)
464 | - [Phoenix Presence with LiveView - 2019/08 - Plangora](https://www.youtube.com/watch?v=4uy50HJifd0)
465 | - [JavaScript Interop with Phoenix LiveView - 2019/07/19 - Plangora](https://www.youtube.com/watch?v=ziuflbasrgk)
466 | - [CRUD with LiveView Part 3 - 2019/07/12 - Plangora](https://www.youtube.com/watch?v=y4JNEd1i8hc)
467 | - [Andrew Forward: LiveView: Rich Client Side Experience Delivered from the Server - 2019/07/01 - EMPEX Conference](https://www.youtube.com/watch?v=KvvkWiECvjY)
468 | - [Upgrade Phoenix Live View - 2019/06/26 - Plangora](https://www.youtube.com/watch?v=yL1gZuFr28A)
469 | - [CRUD with Live View Part 2 - 2019/06/21 - Plangora](https://www.youtube.com/watch?v=d0j8W6omSQA)
470 | - [CRUD with Live View Part 1 - 2019/06/06 - Plangora](https://www.youtube.com/watch?v=0yFGEAXIn7E)
471 | - [Setup Phoenix Live View - 2019/05/24 - Plangora](https://www.youtube.com/watch?v=5PWUTABsCmQ)
472 |
--------------------------------------------------------------------------------