Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heisenware/vrpc-react
Asynchronous RPC via MQTT for React
https://github.com/heisenware/vrpc-react
Last synced: 3 months ago
JSON representation
Asynchronous RPC via MQTT for React
- Host: GitHub
- URL: https://github.com/heisenware/vrpc-react
- Owner: heisenware
- License: other
- Created: 2018-08-17T18:16:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T09:01:29.000Z (over 2 years ago)
- Last Synced: 2024-09-26T01:45:48.435Z (4 months ago)
- Language: JavaScript
- Homepage: https://vrpc.io
- Size: 2.62 MB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# VRPC - Variadic Remote Procedure Calls
[![Build Status](https://travis-ci.com/heisenware/vrpc-react.svg?branch=master)](https://travis-ci.com/heisenware/vrpc-react)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/heisenware/vrpc-react/master/LICENSE)
[![Semver](https://img.shields.io/badge/semver-2.0.0-blue)](https://semver.org/spec/v2.0.0.html)
[![GitHub Releases](https://img.shields.io/github/tag/heisenware/vrpc-react.svg)](https://github.com/heisenware/vrpc-react/tag)
[![GitHub Issues](https://img.shields.io/github/issues/heisenware/vrpc-react.svg)](http://github.com/heisenware/vrpc-react/issues)
![ci](https://github.com/heisenware/vrpc-react/actions/workflows/ci.yml/badge.svg)## Visit our website: [vrpc.io](https://vrpc.io)
## What is VRPC?
VRPC - Variadic Remote Procedure Calls - is an enhancement of the old RPC
(remote procedure calls) idea. Like RPC, it allows to directly call functions
written in any programming language by functions written in any other (or the
same) programming language. Unlike RPC, VRPC furthermore supports:- non-intrusive adaption of existing code, making it callable remotely
- remote function calls on many distributed receivers at the same time (one
client - multiple agents)
- service discovery
- outbound-connection-only network architecture (using MQTT technology)
- isolated (multi-tenant) and shared access modes to remote resources
- asynchronous language constructs (callbacks, promises, event-loops)
- OOP (classes, objects, member functions) and functional (lambda) patterns
- exception forwardingVRPC is available for an entire spectrum of programming technologies including
embedded, data-science, and web technologies.As a robust and highly performing communication system, it can build the
foundation of complex digitization projects in the area of (I)IoT or
Cloud-Computing.## This is VRPC for React
The React VRPC client is a complete solution for backend-frontend communication.
Unlike other libraries it allows to communicate with an arbitrary number
of potentially distributed backends at the same time.The React VRPC client integrates seamlessly in a non-opinionated way into modern
React architectures. Built on top of the
[VRPC](https://github.com/heisenware/vrpc-js) library it allows to call backend
code directly, obsoleting the need to define any wrappers, schemas, resolvers or
adapters.### Getting started
Maybe the easiest way to get started is by following these two examples:
- [Simple React Todos App](examples/vrpc-react-todos-1/README.md)
- [Advanced React Todos App](examples/vrpc-react-todos-2/README.md)### Documentation
All other details are available [here](docs/api.md)