elm-todo-rest-api icon indicating copy to clipboard operation
elm-todo-rest-api copied to clipboard

Modular, heavily-documented Elm todo app with a json rest api

Results 3 elm-todo-rest-api issues
Sort by recently updated
recently updated
newest added

Greetings! Not sure you're interested, but I wanted to mess around with this app to see a working Elm client with a JSON API, and also wanted to learn the...

If you create a todo like this: `POST /todos` ```json { "title": "1234", … } ``` The response will be: ```json { "title": 1234, … } ``` This breaks the...

Set up a gh-pages branch with a demo site. Use programWithFlags along with webpack environment variables to substitute the local endpoint for `http://jsonplaceholder.typicode.com/todos`. It mostly works as-is, except (1) it...

enhancement