@observerx/server
v1.0.0-alpha.9
Published
HTTP server for ObserverX core.
Readme

@observerx/server
HTTP server for ObserverX, based on Expressjs.
Installation
$ npm install @observerx/serverUsage
import PlatformHttpServer from '@observerx/server';
const dataSource = getDataSource();
const server = new PlatformHttpServer(dataSource);
server.start();
// Server is listening on localhost:3000
// You can also set a port number and a host name through environment variablesNote: Configurations of ObserverX core should be written in environment variables or a
.envfile.
