https://github.com/tensor-programming/elixir-ipfs-api
An IPFS (Interplanetary File System) API built in Elixir.
https://github.com/tensor-programming/elixir-ipfs-api
Last synced: 9 months ago
JSON representation
An IPFS (Interplanetary File System) API built in Elixir.
- Host: GitHub
- URL: https://github.com/tensor-programming/elixir-ipfs-api
- Owner: tensor-programming
- License: apache-2.0
- Created: 2017-10-09T20:42:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T13:12:54.000Z (about 3 years ago)
- Last Synced: 2024-12-16T19:03:53.475Z (about 1 year ago)
- Language: Elixir
- Homepage: https://ipfs.io/
- Size: 45.9 KB
- Stars: 7
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ipfs Api wrapper library for Elixir

## This library is still a work in progress
Thus far 65% of the functionality has been implmented in this particular API. Most of the funcitons do not support adding in the optional arguments just yet. Once I've implmented all of the commands I will work on adding the optional flags into each function.
# Install
Add Ipfs_elixir to your `mix.exs` dependencies:
```elixir
def deps do
[
{:ipfs_elixir, "~> 0.1.0"},
]
end
```
and run `$ mix deps.get` to install the dependency.
## Usage
WIP