fireball

Package Version Hex Docs

gleam add fireball@1
import gleam/io

import fireball

pub fn main() {
  //Get a document from your database
  let assert Ok(my_doc) = firebase.get_doc(apikey: "my_key", apiver: "v1beta1", database: "(default)", doc: "path/to/my_doc/without/leading/slash", proj_id: "my_project_id")

  //Print some data from it!
  io.println(my_doc.data)
}

Further documentation can be found at https://hexdocs.pm/fireball.

Development

gleam run   # Run the project
gleam test  # Run the tests
Search Document