Skip to content

Instantly share code, notes, and snippets.

View Arp-G's full-sized avatar
🎯
Focusing

Arpan Ghoshal Arp-G

🎯
Focusing
View GitHub Profile
@Arp-G
Arp-G / README.md
Created April 16, 2022 15:52 — forked from rbishop/README.md
A super simple Elixir server for sending Server Sent Events to the browser.

Generate a new Elixir project using mix and add cowboy and plug as dependencies in mix.exs:

  defp deps do
    [
      {:cowboy, "~> 1.0.0"},
      {:plug, "~> 0.8.1"}
    ]
  end