Packages

An Elixir library to manage long-running NodeJS processes

Current section

Files

Jump to
still_node lib still_node.ex
Raw

lib/still_node.ex

defmodule StillNode do
@moduledoc """
Documentation for `StillNode`.
"""
@doc """
Hello world.
## Examples
iex> StillNode.hello()
:world
"""
def hello do
:world
end
end