A basic UI-clone of Instagram using Elm.
Inspired by Wes Bos' great Redux course.
Related articles here:
Preview available here: elmstagram.benbooth.dev
A big shout out to my friend Sam Gates for letting me use data from his @samgatesphotography account for this example app and articles.
git clone https://github.com/bkbooth/Elmstagram.git
cd Elmstagram
npm install
npm start
I was originally trying to avoid Node.js, npm
and package.json
by using a Makefile
and make
scripts but I'm installing Elm with npm
anyway so I ended up going full Node.js and npm
scripts.
You can use npm run build
to build everything into the dist
directory.
Alternatively you can use Yarn instead of npm
.