https://github.com/bakercp/ofxjsonrpc
JSONRPC Implementation using openFrameworks events, WebSockets, etc.
https://github.com/bakercp/ofxjsonrpc
Last synced: about 1 year ago
JSON representation
JSONRPC Implementation using openFrameworks events, WebSockets, etc.
- Host: GitHub
- URL: https://github.com/bakercp/ofxjsonrpc
- Owner: bakercp
- License: mit
- Created: 2014-01-14T23:49:51.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2019-04-29T23:46:14.000Z (about 7 years ago)
- Last Synced: 2025-02-28T11:35:34.761Z (over 1 year ago)
- Language: JavaScript
- Size: 920 KB
- Stars: 25
- Watchers: 3
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
ofxJSONRPC
==========
Description
-----------
Create a JSONRPC server application with openFrameworks. This allows you to easily communicate between a browser and an openFrameworks application.
Features
--------

[JSONRPC 2.0](http://www.jsonrpc.org/specification) Implementation using openFrameworks events, WebSockets, etc.
Easily communicate between the browser and an openFrameworks application with the well-documented JSONRPC 2.0 protocol.
Compatible with [jquery.jsonrpcclient.js](https://github.com/Textalk/jquery.jsonrpcclient.js) on the client side.
See examples and documentation for more information.
Getting Started
---------------
To get started, generate the example project files using the openFrameworks [Project Generator](http://openframeworks.cc/learning/01_basics/how_to_add_addon_to_project/).
Documentation
-------------
API documentation can be found here.
Build Status
------------
Linux, macOS [](https://travis-ci.org/bakercp/ofxJSONRPC)
Visual Studio, MSYS [](https://ci.appveyor.com/project/bakercp/ofxjsonrpc/branch/master)
Compatibility
-------------
### Branches
The `stable` branch of this repository is meant to be compatible with the openFrameworks [stable branch](https://github.com/openframeworks/openFrameworks/tree/stable), which corresponds to the latest official openFrameworks release.
The `master` branch of this repository is meant to be compatible with the openFrameworks [master branch](https://github.com/openframeworks/openFrameworks/tree/master).
Some past openFrameworks releases are supported via tagged versions, but only `stable` and `master` branches are actively supported.
### Requirements
- [ofxHTTP](https://github.com/bakercp/ofxHTTP)
- [ofxIO](https://github.com/bakercp/ofxIO)
- [ofxMediaType](https://github.com/bakercp/ofxMediaType)
- [ofxSSLManager](https://github.com/bakercp/ofxSSLManager)
- [ofxNetworkUtils](https://github.com/bakercp/ofxNetworkUtils)
- ofxPoco (included in openFrameworks core)
Versioning
----------
This project uses [Semantic Versioning](http://semver.org/), although strict adherence will only come into effect at version 1.0.0.
Licensing
---------
See [LICENSE.md](LICENSE.md).
Contributing
------------
Pull Requests are always welcome, so if you make any improvements please feel free to float them back upstream :)
1. Fork this repository.
2. Create your feature branch (`git checkout -b my-new-feature`).
3. Commit your changes (`git commit -am 'Add some feature'`).
4. Push to the branch (`git push origin my-new-feature`).
5. Create new Pull Request.