While writing multiple pipelines, you may want to debug the intermediate values.
Just insert |> IO.inspect
between your pipelines.
e.g. in the expression below:
1 | :crypto.strong_rand_bytes(32) |
If we want to check intermediate values we just need to add a |> IO.inspect
1 | :crypto.strong_rand_bytes(32) |
This will print all the intermediate values to the STDOUT. IO.inspect is a function which prints the input and returns it.
I am currently working on LiveForm which makes
setting up contact forms on your website a breeze.