npm.io
2.11.3 • Published 3 years ago

@graphistry/falcor-socket-datasource

Licence
MIT
Version
2.11.3
Deps
2
Size
61 kB
Vulns
1
Weekly
0
Stars
23

Falcor Socket DataSource
NPM version Dependency Status Build Status Coverage Status

A socket DataSource for Falcor.

Installation

npm install falcor-socket-datasource

Usage

  1. Import Falcor and this library
  2. Create a new Falcor.Model
  3. Set its source to a new FalcorSocketDataSource
  4. Use the model as usual
import Falcor from "falcor";
import FalcorSocketDataSource from "falcor-socket-datasource";

const model = new Falcor.Model({
	source: new FalcorSocketDataSource("ws://localhost:8080")
});

model.get(...).subscribe(...);

This library uses Socket.IO Client, so using Socket.IO as a server would be a wise choice.

An example of a simple socket server can be found in this test file.

Keywords