2015-03-04 21:11:04 +00:00
2015-03-04 13:37:04 +00:00
2015-03-04 20:38:29 +00:00
2015-03-04 21:11:04 +00:00
2015-03-04 13:37:04 +00:00
2015-03-04 13:37:04 +00:00
2015-03-04 17:37:46 +00:00
2015-03-04 17:42:29 +00:00
2015-03-04 21:06:08 +00:00

Matrix Javascript SDK
=====================

This is the Matrix_ Client-Server v1 SDK for Javascript. This SDK can be run
in a browser (using ``browserify`` or stand-alone with a suitable 
``request.js``) or in Node.js.

Quickstart
==========

In a browser
------------
Host `examples/browser`_ (e.g. using ``python -m SimpleHTTPServer``) and check
the console to see a working version.

In Node
-------
Run `examples/node`_ via ``node app.js`` to see a working version.

API
===

Please see the `client server API`_ for more information on the HTTP calls.

Matrix Client
-------------
``MatrixClient`` is constructed via ``matrixcs.createClient(args)`` where ``args`` can be:

- ``baseUrl`` (String) : The home server base URL to make requests to.
- ``credentials`` (Object) : Consists of a ``baseUrl`` (String)  and an ``accessToken``
  (String).
- ``credentials, config`` (Object, Object) : As before, but with a ``config`` which has
  the following options:
  
  *  ``noUserAgent`` (Boolean: default ``false``) : Set to ``true`` to stop setting a 
     ``User-Agent`` on requests. This is typically done when using the SDK in a browser 
     which logs errors when trying to clobber the User-Agent.

At any point these values can be modified by accessing ``matrixClient.credentials`` and
``matrixClient.config``.

Request
-------

``MatrixClient`` **requires** a ``request`` module in order to function. This is
usually done for you when using ``npm`` via the ``index.js`` files. You can also
manually inject this by calling ``matrixcs.request(<request>)``. Wrappers around
``request`` are also provided to modify the API interface from invoking callbacks
to resolving/rejecting Promises. See ``lib/matrix-promise.js`` for more info.



.. _Matrix: http://matrix.org
.. _examples/browser: examples/browser
.. _examples/node: examples/node
.. _client server API: http://matrix.org/docs/api/client-server/
S
Description
No description provided
Readme 57 MiB
Languages
TypeScript 99.4%
Python 0.4%
JavaScript 0.2%