Popularity
3.0
Growing
Activity
0.0
Stable
8
3
6
Monthly Downloads: 535
Programming language: Elixir
License: Apache License 2.0
Tags:
BSON
Latest version: v1.0.0
cyanide alternatives and similar packages
Based on the "BSON" category.
Alternatively, view cyanide alternatives based on common mentions on social networks and blogs.
-
BSONMap
Elixir package that applies a function to each document in a BSON file.
Do you think we are missing an alternative of cyanide or a related project?
README
Cyanide
Cyanide is a BSON library for Elixir.
Installation
The package can be installed by adding cyanide
to your list of dependencies in mix.exs
:
def deps do
[
{:cyanide, "~> 1.0"}
]
end
Usage
Cyanide.encode(%{"value" => 42})
#=> {:ok, <<16, 0, 0, 0, 16, 118, 97, 108, 117, 101, 0, 42, 0, 0, 0, 0>>}
Cyanide.decode(<<16, 0, 0, 0, 16, 118, 97, 108, 117, 101, 0, 42, 0, 0, 0, 0>>)
#=> {:ok, %{"value" => 42}}