-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathconstants.mjs
More file actions
123 lines (123 loc) · 2.65 KB
/
constants.mjs
File metadata and controls
123 lines (123 loc) · 2.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/**
* @deprecated This is being exported temporarily during the transition period.
* For a more general solution, category information should be added to pages in
* YAML format, and this array should be removed.
*
* Defines the sidebar navigation groups and their associated page URLs.
* @type {Array<{ groupName: string, items: Array<string> }>}
*/
export const SIDEBAR_GROUPS = [
{
groupName: 'Getting Started',
items: [
'documentation.html',
'synopsis.html',
'cli.html',
'environment_variables.html',
'globals.html',
],
},
{
groupName: 'Module System',
items: [
'modules.html',
'esm.html',
'module.html',
'packages.html',
'typescript.html',
],
},
{
groupName: 'Networking & Protocols',
items: [
'http.html',
'http2.html',
'https.html',
'net.html',
'dns.html',
'dgram.html',
'quic.html',
],
},
{
groupName: 'File System & I/O',
items: [
'fs.html',
'path.html',
'buffer.html',
'stream.html',
'string_decoder.html',
'zlib.html',
'readline.html',
'tty.html',
'zlib_iter.html',
],
},
{
groupName: 'Asynchronous Programming',
items: [
'async_context.html',
'async_hooks.html',
'events.html',
'timers.html',
'webstreams.html',
'stream_iter.html',
],
},
{
groupName: 'Process & Concurrency',
items: [
'process.html',
'child_process.html',
'cluster.html',
'worker_threads.html',
'os.html',
],
},
{
groupName: 'Security & Cryptography',
items: ['crypto.html', 'webcrypto.html', 'permissions.html', 'tls.html'],
},
{
groupName: 'Data & URL Utilities',
items: ['url.html', 'querystring.html', 'punycode.html', 'util.html'],
},
{
groupName: 'Debugging & Diagnostics',
items: [
'debugger.html',
'inspector.html',
'console.html',
'report.html',
'tracing.html',
'diagnostics_channel.html',
'errors.html',
],
},
{
groupName: 'Testing & Assertion',
items: ['test.html', 'assert.html', 'repl.html'],
},
{
groupName: 'Performance & Observability',
items: ['perf_hooks.html', 'v8.html'],
},
{
groupName: 'Runtime & Advanced APIs',
items: [
'vm.html',
'wasi.html',
'sqlite.html',
'single-executable-applications.html',
'intl.html',
],
},
{
groupName: 'Native & Low-level Extensions',
items: ['addons.html', 'n-api.html', 'embedding.html'],
},
{
groupName: 'Legacy & Deprecated',
items: ['deprecations.html', 'domain.html'],
},
];