0.4.0 • Published 6 years ago

vidiq v0.4.0

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
6 years ago

VidiQ Open Server

License

nodejs needed to get started

not for productions until 1.0.0

  1. Install
npm i vidiq
  1. Make config
const config = {
    secret: JWT_SECRET,
    limit: 4,
    path: '/socket',
    libs: {
        subtract: d => d[0] - d[1],
        mult: d => d[0]*d[1]
    }
};
  1. Require, set config, express and http-server
const app = require('express')();
const http = require('http').Server(app);
const vidiq = require('vidiq').server(config, http);

const port = 3000;

http.listen(port);
0.4.0

6 years ago

0.3.6

6 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.1

6 years ago

0.3.0-beta

6 years ago

0.2.3

6 years ago

0.2.1

7 years ago