Socket
Socket
Sign inDemoInstall

galax.be

Package Overview
Dependencies
3
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    galax.be

Galax.be Javascript Client


Version published
Weekly downloads
1
Maintainers
1
Install size
147 kB
Created
Weekly downloads
 

Readme

Source

Galax.be

Galax.be is a key/value store as a service. It is specifically designed for serverless deployments. The client uses websockets for communication with the server. This gives a higher latency than using a lower level protocol, but it helps to setup a strong system for data replication and high availability and also helps to manage thousands of client connections to the database server, allowing to use it in a serverless environment like Zeit Now.

How to use

const Galax = require('galax.be')

const token = '...'

;(async () => {

  await db.open(token)
  await db.set('peter', 26)
  const data = await db.get('peter')
  console.log('data', data)
  db.close()

})()

FAQs

Last updated on 03 Feb 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc