Tag: elm
Use WebSocket Ports In Elm Application
TL;DR We created Elm ports and some Javascript code to connect to the WebSocket server using Elm in the previous post. Let’s use Elm ports to start to listen to…
How To Connect To WebSocket Server In Elm
TL;DR In the previous post, we loaded three Photos into the Picshare application. Today we will connect to the WebSocket server using Elm. This post is part of the functional…
Real-Time Elm Picshare Using Websockets
TL;DR In the previous post, we mapped received photos from REST API into our simple Picshare application. Today we will load three Photos into the Picshare application. This post is…
How To Receive Data From REST API In Elm
TL;DR In the previous post, we solved the issue of missing stylesheets in our application. Today we map received photos from REST API into our simple Picshare application. This post…
How To Make Application In Elm
TL;DR In the previous post, we learned how to handle Maybe Elm Value. But our Application did not show a like button. In today’s post, we explain how we solved…
Handling Elm Maybe Value
TL;DR In the previous post, we sent an HTTP request using Elm architecture. This post is part of the functional language series, and it is based on a remarkable book,…
How To Send An HTTP Request In Elm
TL;DR In the previous post, we created our first Elm HTTP Request. Today we are sending this HTTP request using Elm architecture. This post is part of the functional language series,…
How To Do HTTP Request In Elm
TL;DR In the previous post, we created the Picshare Photo Decoder. Today we are making our first Elm HTTP Request. This post is part of the functional language series, and…
How To Create Our Picshare Photo Decoder
TL;DR In the previous post, we learned how to safely decode JSON from a String with elm-JSON-decode-pipeline package. Today we apply this knowledge to create our Picshare Photo Decoder. This…