1.0.4 • Published 8 years ago

falcor-socket-datasource v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

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.