#elixir #plug #cowboy #programming
Elixir app with plug and cowboy
https://medium.com/@miprio101/elixir-app-with-plug-and-cowboy-2ecee23c39dd
Elixir app with plug and cowboy
https://medium.com/@miprio101/elixir-app-with-plug-and-cowboy-2ecee23c39dd
Medium
Elixir app with Plug and Cowboy
This week I am going to demonstrate about how you can create an Elixir app with the power of Plug and Cowboy. And after reading this post…
#elixir #phoenix #functional_programming #router #plug
Elixir bits #2 — rewriting your phoenix plug.conn paths
https://medium.com/@tinen.bruno/elixir-bits-2-rewriting-your-phoenix-plug-conn-paths-84c9f4268f4f
Elixir bits #2 — rewriting your phoenix plug.conn paths
https://medium.com/@tinen.bruno/elixir-bits-2-rewriting-your-phoenix-plug-conn-paths-84c9f4268f4f
Medium
Elixir Bits #2 — Rewriting your Phoenix Plug.Conn Paths
There are situations in which you may want to rewrite the URL path you receive to another one. Imagine you have the following scenario…
#elixir #testing #mocks #cowboy #plug
Testing external web requests in elixir? roll your own mock server
https://medium.com/flatiron-labs/rolling-your-own-mock-server-for-testing-in-elixir-2cdb5ccdd1a0
Testing external web requests in elixir? roll your own mock server
https://medium.com/flatiron-labs/rolling-your-own-mock-server-for-testing-in-elixir-2cdb5ccdd1a0
Medium
Testing External Web Requests in Elixir? Roll Your Own Mock Server
We’ll show you what to avoid and how to roll your own mock server for your test environment.
#elixir #phoenix_framework #plug #upload
Base64-encoded file uploads with phoenix and plug
https://medium.com/@szajbus/base64-encoded-file-uploads-with-phoenix-and-plug-1bfe9d9af97e
Base64-encoded file uploads with phoenix and plug
https://medium.com/@szajbus/base64-encoded-file-uploads-with-phoenix-and-plug-1bfe9d9af97e
Medium
Base64-encoded file uploads with Phoenix and Plug
Base64-encoded files may be a special case in your app, but with little work they can be handled as easily as regular ones uploaded via…
#phoenix #elixir #plug #upload
Step-by-step tutorial to build a phoenix app that supports user uploads
https://dev.to/alvisesus/step-by-step-tutorial-to-build-a-phoenix-app-that-supports-user-uploads-345p
Step-by-step tutorial to build a phoenix app that supports user uploads
https://dev.to/alvisesus/step-by-step-tutorial-to-build-a-phoenix-app-that-supports-user-uploads-345p
DEV Community
Step-by-Step Tutorial to Build a Phoenix App that Supports User Uploads
how to build a Phoenix app from scratch, letting users upload their files!
#elixir #phoenix #phoenix_framework #plug #static
Serving static assets on a subpath in phoenix
https://medium.com/@svengehring/serving-static-assets-on-a-subpath-in-phoenix-758f9ecb9921
Serving static assets on a subpath in phoenix
https://medium.com/@svengehring/serving-static-assets-on-a-subpath-in-phoenix-758f9ecb9921
Medium
Serving static assets on a subpath in Phoenix
Phoenix serves static files with a Plug.Static defined in the endpoint. But what if we want to serve additional static files from subpaths?
#phoenix #elixir #cowboy #plug
Dealing with long-running http requests and timeouts in phoenix
https://dev.to/alvisesus/dealing-with-long-running-http-requests-and-timeouts-in-phoenix-1824
Dealing with long-running http requests and timeouts in phoenix
https://dev.to/alvisesus/dealing-with-long-running-http-requests-and-timeouts-in-phoenix-1824
DEV Community
Dealing with long-running HTTP Requests and Timeouts in Phoenix
When processing a HTTP request takes too long, Phoenix closes the connection. In this article we see how to simulate a long-running request and configure the Cowboy webserver timeout.