0.0.10 • Published 10 years ago

logoots-texteditor-server v0.0.10

Weekly downloads
10
License
ISC
Repository
-
Last release
10 years ago

TODO: Présentation du module

Installation

npm install logoots-texteditor-server
npm install socket.io

Utilisation

In your app.js file:

var server = require('http').createServer(app),
var Coordinator = require('logoots-texteditor-server').Coordinator,
var SocketIOAdapter = require('logoots-texteditor-server').SocketIOAdapter;

var coordinator = new Coordinator();
var socketIOAdapter = new SocketIOAdapter(server, coordinator);
coordinator.setNetwork(socketIOAdapter);

The network architecture provided consist in an central server communicating with clients using WebSockets, using socket.io, and broadcasting the modifications made by users to the others. If you don't want to use socket.io, you can easily implement your own network architecture, as long as you respect the name of the events and the data structure used to communicate between the coordinator and the network adapter.

See also

  • logoots-structs
  • logoots-texteditor-client
  • demo-logoots-texteditor
0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago