ExSync

A suite of Elixir libraries for a Diff Sync backend.

Based off of Jan Moschke's Diffsync library (and consequently works great with his javascript client).

Installation

If available in Hex, the package can be installed as:

  1. Add exsync to your list of dependencies in mix.exs:

    def deps do

     [{:exsync, "~> 0.0.3"}]

    end

  2. Ensure exsync is started before your application:

    def application do

     [applications: [:exsync]]

    end