Skip to content

nallwhy/fluxir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fluxir

Fluxir is a Flux builder for Elixir.

iex> (Fluxir.from(bucket: "<bucket>")
|> Fluxir.range(start: "-1d")
|> Fluxir.to_string(pretty: true)
|> IO.puts())

from(bucket: "<bucket>")
|> range(start: -1d)

Installation

If available in Hex, the package can be installed by adding fluxir to your list of dependencies in mix.exs:

def deps do
  [
    {:fluxir, "~> 0.1.0"}
  ]
end

Supporting Flux version

Fluxir targets to support Flux v0.143.0 now.