New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rapid-io

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rapid-io

JavaScript SDK for Rapid.io to be used both server-side and client-side.

  • 0.4.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

logo


JavaScript client for Rapid.io realtime database

Website | Documentation | Reference

Build Status styled with prettier

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:

import rapid from 'rapid-io' // ES6 modules
const rapid = require('rapid-io') // RequireJS

And use it:

const client = rapid.createClient(API_KEY)

Browser

Alternatively you can use a standalone UMD build for browsers. You can use fast and global unpkg CDN.

<script src=" https://unpkg.com/rapid-io/dist/rapid-io.umd.js"></script>
<script>
	const client = Rapid.createClient(API_KEY)
</script>

See Getting Started for more information.

Caught a bug?

Open an issue.

License

The MIT License

Keywords

FAQs

Package last updated on 29 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc