https://github.com/strugee/bespoke-libreoffice-remote
Bespoke.js plugin that talks with LibreOffice's Impress Remote over WebRT APIs
https://github.com/strugee/bespoke-libreoffice-remote
Last synced: 9 months ago
JSON representation
Bespoke.js plugin that talks with LibreOffice's Impress Remote over WebRT APIs
- Host: GitHub
- URL: https://github.com/strugee/bespoke-libreoffice-remote
- Owner: strugee
- License: lgpl-3.0
- Created: 2014-10-24T06:20:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-15T02:56:00.000Z (over 11 years ago)
- Last Synced: 2025-03-18T05:19:05.639Z (over 1 year ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/strugee/bespoke-libreoffice-remote) [](https://coveralls.io/r/strugee/bespoke-libreoffice-remote)
# bespoke-libreoffice-remote
Impersonate LibreOffice Impress to talk to the Impress Remote app
## Download
Download the [production version][min] or the [development version][max], or use a [package manager](#package-managers).
[min]: https://raw.github.com/strugee/bespoke-libreoffice-remote/master/dist/bespoke-libreoffice-remote.min.js
[max]: https://raw.github.com/strugee/bespoke-libreoffice-remote/master/dist/bespoke-libreoffice-remote.js
## Usage
This plugin is shipped in a [UMD format](https://github.com/umdjs/umd), meaning that it is available as a CommonJS/AMD module or browser global.
For example, when using CommonJS modules:
```js
var bespoke = require('bespoke'),
libreofficeRemote = require('bespoke-libreofficeRemote');
bespoke.from('#presentation', [
libreofficeRemote()
]);
```
When using browser globals:
```js
bespoke.from('#presentation', [
bespoke.plugins.libreofficeRemote()
]);
```
## Package managers
### npm
```bash
$ npm install bespoke-libreoffice-remote
```
### Bower
```bash
$ bower install bespoke-libreoffice-remote
```
## Credits
This plugin was built with [generator-bespokeplugin](https://github.com/markdalgleish/generator-bespokeplugin).
## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)