• Stars
    star
    18
  • Rank 1,169,290 (Top 24 %)
  • Language
    Elm
  • License
    MIT License
  • Created over 7 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A basic UI-clone of Instagram using Elm

Elmstagram

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.

Build & Run

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.