https://github.com/jfairbank/migrate-js-to-elm
https://github.com/jfairbank/migrate-js-to-elm
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jfairbank/migrate-js-to-elm
- Owner: jfairbank
- Created: 2017-11-03T12:47:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T15:26:14.000Z (almost 8 years ago)
- Last Synced: 2025-06-07T19:05:45.290Z (4 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Migrate JavaScript to Elm
A simple note-taking React application for showing how to add an image upload feature with Elm and eventually migrate the entire application to Elm. This repo is meant to be used with the book _Programming Elm_.
## Getting Started
Install dependencies with npm:
```bash
npm install
```Run the application:
```bash
npm start
```Your browser should open the application in a browser tab.
## Add Image Upload Feature
You can find the steps for adding the image upload feature and migrating the entire application with these branches:
1. `01-add-initial-image-uploader`
2. `02-upload-images`
3. `03-display-images`
4. `04-display-initial-images`
5. `05-migrate-all`
6. `06-delete-images`