abstract js bindings for
deltachat-core
WORK IN PROGRESS The API can change at any time and will not follow semver versioning until v1.0.0
has been released.
deltachat-js
primarily aims to offer two things:
npm install deltachat-js
See example usage in test/binding.js
.
// all of the function names in deltachat that you need to implement
var functionNames = require('deltachat-js/dc_functions')
// an example implementation of the above functions
var binding = require('./test/binding')
// pass bindings into the deltachat wrapper
var dc = new DeltaChat(binding)
dc.configure(...)
Licensed under the GPLv3, see LICENSE file for details.
Copyright © 2018 Delta Chat contributors.
initial commit