blob: 9e185d3b1d28a083efb55c6b8e1399fe5dc6bb2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import * as connectLivereload from 'connect-livereload';
import * as express from 'express';
import * as tinylrFn from 'tiny-lr';
import * as openResource from 'open';
import * as serveStatic from 'serve-static';
import {resolve} from 'path';
import {APP_BASE, APP_DEST, DOCS_DEST, LIVE_RELOAD_PORT, DOCS_PORT, PORT} from '../config';
let tinylr = tinylrFn();
export function serveSPA() {
let server = express();
tinylr.listen(LIVE_RELOAD_PORT);
server.use(
APP_BASE,
connectLivereload({ port: LIVE_RELOAD_PORT }),
express.static(process.cwd())
);
server.listen(PORT, () =>
openResource('http://localhost:' + PORT + APP_BASE + APP_DEST)
);
}
export function notifyLiveReload(e) {
let fileName = e.path;
tinylr.changed({
body: { files: [fileName] }
});
}
export function serveDocs() {
let server = express();
server.use(
APP_BASE,
serveStatic(resolve(process.cwd(), DOCS_DEST))
);
server.listen(DOCS_PORT, () =>
openResource('http://localhost:' + DOCS_PORT + APP_BASE)
);
}
|