-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
36 lines (25 loc) · 908 Bytes
/
index.js
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
import { promises as fs } from 'fs';
import { renderToString } from 'wesc/dom/server';
import 'media-chrome';
import 'media-chrome/dist/media-theme-element.js';
// Process full page
// let html = await fs.readFile('./app.html');
// console.time('renderToString');
// let out = await renderToString(html);
// console.timeEnd('renderToString');
// await fs.writeFile('./index.html', out);
// Process only custom element ancestors
const customElementsRegex = /<(\w+-\w+)([^>]*?)>([^]*?)<\/\1>/gm;
let html = await fs.readFile('./app.html');
console.time('renderToString');
let out = '';
let start = 0;
let match;
while ((match = customElementsRegex.exec(html)) !== null) {
out += html.slice(start, match.index);
out += await renderToString(match[0]);
start = customElementsRegex.lastIndex;
}
out += html.slice(start);
console.timeEnd('renderToString');
await fs.writeFile('./index.html', out);