Popularity
7.2
Stable
Activity
0.0
Stable
159
4
15
Programming language: JavaScript
Tags:
Examples And Funny Stuff
phoenix-flux-react alternatives and similar packages
Based on the "Examples and funny stuff" category.
Alternatively, view phoenix-flux-react alternatives based on common mentions on social networks and blogs.
-
magnetissimo
Web application that indexes all popular torrent sites, and saves it to the local database. -
changelog.com
Changelog is news and podcast for developers. This is our open source platform. -
real world example app
Exemplary real world application built with Elixir + Phoenix -
phoenix-chat-example
๐ฌ The Step-by-Step Beginners Tutorial for Building, Testing & Deploying a Chat app in Phoenix 1.7 [Latest] ๐ -
phoenix-liveview-counter-tutorial
๐คฏ beginners tutorial building a real time counter in Phoenix 1.7 + LiveView 0.18 โก๏ธ -
phoenix-ecto-encryption-example
๐ A detailed example for how to encrypt data in an Elixir (Phoenix v1.7) App before inserting into a database using Ecto Types -
coderplanets.com
coderplanets.com API(GraphQL) server, build with elixir, phoenix, absinthe -
phoenix-todo-list-tutorial
โ Complete beginners tutorial building a todo list from scratch in Phoenix 1.7rc (latest) -
hello_phoenix
Application template for SPAs with Phoenix, React and Redux -
portal
A tutorial for shooting fault-tolerant portals for distributed data-transfer application in Elixir -
feedx
Generic feed adding social features to current applications. -
ex_iss
An elixir wrapper for Open Notify's International Space Station API. http://open-notify.org/ -
rubix
A very simple (and barely-functioning) Ruby runner for Elixir -
rollex
Elixir library using a Pratt Parser algorithm to calculate dice rolls.
Elixir and Phoenix Application Security Platform
Replace Snyk, reCaptcha, and Cloudflare bot defense with the only application security platform built for Elixir and Phoenix.
Promo
paraxial.io
Do you think we are missing an alternative of phoenix-flux-react or a related project?
README
Fun with Phoenix Channels, Flux and React
An experiment built to play with various concepts including:
- the Phoenix Framework
- Phoenix Channels and GenEvent handlers
- React and Flux
- 6to5
- Immutable
- Browserify
Basic concept
Running
To start the Phoenix application:
- Make sure you have Redis installed and running.
- Install dependencies with
mix deps.get
- Start Phoenix endpoint with
mix phoenix.server
To start the client:
cd web/js
- Install dependencies with
npm install
- Compile and watch the client code with
npm start
Now you can visit localhost:4000
from your browser.
... or watch it here.
Releasing
First, build the minified version of the client:
cd web/js/
- Build the bundle with
npm run build
Then create the release and start the application:
export MIX_ENV=prod
mix release
rel/ex_react_ws/bin/ex_react_ws start
Now you can visit localhost:4000
from your browser.