forked from docsifyjs/docsify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
55 lines (46 loc) 路 1.23 KB
/
Copy pathserver.js
File metadata and controls
55 lines (46 loc) 路 1.23 KB
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
46
47
48
49
50
51
52
53
54
55
const liveServer = require('live-server');
const isSSR = !!process.env.SSR;
const middleware = [];
if (isSSR) {
const { initJSDOM } = require('./test/_helper');
const dom = initJSDOM('', {
url: 'https://127.0.0.1:3000',
});
require = require('esm')(module /* , options */);
const {
Renderer,
getDefaultTemplate,
} = require('./packages/docsify-server-renderer/index');
debugger;
const renderer = new Renderer({
template: getDefaultTemplate(),
config: {
name: 'docsify',
repo: 'docsifyjs/docsify',
basePath: 'https://docsify.js.org/',
loadNavbar: true,
loadSidebar: true,
subMaxLevel: 3,
auto2top: true,
alias: {
'/de-de/changelog': '/changelog',
'/zh-cn/changelog': '/changelog',
'/changelog':
'https://raw.githubusercontent.com/docsifyjs/docsify/master/CHANGELOG',
},
},
// path: './', // not used for anything?
});
middleware.push(function(req, res, next) {
if (/\.(css|js)$/.test(req.url)) {
return next();
}
renderer.renderToString(req.url).then(html => res.end(html));
});
}
const params = {
port: 3000,
watch: ['lib', 'docs', 'themes'],
middleware,
};
liveServer.start(params);