0.3.1 • Published 7 years ago

wire-webapp-core v0.3.1

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
7 years ago

Greenkeeper badge

:warning: THIS PROJECT IS NOT OFFICIALLY SUPPORTED! ALL CODE IN HERE IS IN DEVELOPMENT AND LIKELY TO CHANGE WITHOUT WARNING. USE AT YOUR OWN RISK. :warning:


Wire

This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com.

You can find the published source code at github.com/wireapp.

For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.

wire-webapp-core

Wire for Web's communication core.

Simple example

var wire = require('wire-webapp-core');

var user = new wire.User({email: 'name@mail.com', password: 'secret'})
.login()
.then(function (service) {
  return service.conversation.sendTextMessage('conversation-id', 'Message');
});