JavaScript client for Rapid.io realtime database
Website | Documentation | Reference
What
Rapid.io is a cloud-hosted service that allows app developers to build realtime user interfaces without having to worry about the underlying infrastructure. It works as a non-relational data store accessible from a client-side code.
Why
Clients can create, update, delete and subscribe to a set of data and receive updates in realtime.
How
To include a library you can either use a npm package manager or include it directly trough a <script>
tag.
Node.js / webpack / Browserify / Rollup
If you need a library for a server-side usage or you are using a module bundler, you can install it from npm:
yarn add rapid-io
npm install --save rapid-io
Then include the library:
const rapid = // RequireJS
And use it:
const client = rapid
Browser
Alternatively you can use a standalone UMD build for browsers. You can use fast and global unpkg CDN.
See Getting Started for more information.
Caught a bug?
Open an issue.