forked from denoland/manual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.json
171 lines (171 loc) · 4.86 KB
/
toc.json
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"introduction": {
"name": "Introduction"
},
"getting_started": {
"name": "Getting Started",
"children": {
"installation": "Installation",
"setup_your_environment": "Set Up Your Environment",
"first_steps": "First Steps",
"command_line_interface": "Command Line Interface",
"configuration_file": "Configuration File",
"permissions": "Permissions",
"debugging_your_code": "Debugging Your Code"
}
},
"runtime": {
"name": "The Runtime",
"children": {
"stability": "Stability",
"program_lifecycle": "Program Lifecycle",
"permission_apis": "Permission APIs",
"web_platform_apis": "Web Platform APIs",
"http_server_apis": "HTTP Server APIs",
"http_server_apis_low_level": "HTTP Server APIs (Low Level)",
"location_api": "Location API",
"web_storage_api": "Web Storage API",
"workers": "Workers",
"ffi_api": "Foreign Function Interface API"
}
},
"linking_to_external_code": {
"name": "Linking to External Code",
"children": {
"reloading_modules": "Reloading Modules",
"integrity_checking": "Integrity Checking",
"proxies": "Proxies",
"private": "Private Modules",
"import_maps": "Import Maps"
}
},
"node": {
"name": "Interoperating with Node and NPM",
"children": {
"compatibility_mode": "Node Compatibility Mode",
"std_node": "The std/node Library",
"cdns": "Packages from CDNs",
"import_maps": "Using Import Maps",
"faqs": "Frequently Asked Questions",
"cheatsheet": "Node->Deno Cheatsheet",
"dnt": "dnt - Deno to Node Transform"
}
},
"typescript": {
"name": "Using TypeScript",
"children": {
"overview": "Overview",
"configuration": "Configuration",
"types": "Types and Type Declarations",
"migration": "Migrating to/from JavaScript",
"faqs": "Frequently Asked Questions"
}
},
"jsx_dom": {
"name": "Using JSX and the DOM",
"children": {
"overview": "Overview",
"jsx": "Configuring JSX",
"linkedom": "Using LinkeDOM",
"deno_dom": "Using deno-dom",
"jsdom": "Using jsdom",
"css": "Parsing CSS",
"twind": "Using Twind"
}
},
"webassembly": {
"name": "Using WebAssembly",
"children": {
"using_wasm": "Using WebAssembly in Deno",
"using_streaming_wasm": "Using the Streaming WebAssembly APIs",
"wasm_resources": "Helpful Resources"
}
},
"standard_library": {
"name": "Standard Library"
},
"examples": {
"name": "Examples",
"children": {
"hello_world": "Hello World",
"import_export": "Import and Export Modules",
"manage_dependencies": "Manage Dependencies",
"fetch_data": "Fetch Data",
"read_write_files": "Read and Write Files",
"unix_cat": "Unix cat Program",
"http_server": "HTTP Web Server",
"file_server": "File Server",
"tcp_echo": "TCP echo Server",
"subprocess": "Creating a Subprocess",
"os_signals": "OS Signals",
"file_system_events": "File System Wvents",
"module_metadata": "Module Metadata",
"shebang": "Shebang"
}
},
"testing": {
"name": "Testing",
"children": {
"assertions": "Assertions",
"coverage": "Coverage",
"documentation": "Documentation",
"sanitizers": "Sanitizers",
"behavior_driven_development": "Behavior-Driven Development",
"mocking": "Mocking",
"snapshot_testing": "Snapshots"
}
},
"tools": {
"name": "Tools",
"children": {
"script_installer": "Script Installer",
"formatter": "Formatter",
"repl": "Read-Eval-Print-Loop",
"bundler": "Bundler",
"compiler": "Compiling Executables",
"documentation_generator": "Documentation Generator",
"dependency_inspector": "Dependency Inspector",
"linter": "Linter",
"task_runner": "Task Runner",
"vendor": "Vendoring Dependencies",
"benchmarker": "Benchmarking"
}
},
"continuous_integration": {
"name": "Continuous Integration"
},
"vscode_deno": {
"name": "Using Visual Studio Code",
"children": {
"testing_api": "Testing API"
}
},
"language_server": {
"name": "Language Server",
"children": {
"overview": "Overview of the Language Server",
"imports": "Import Suggestions and Intelligent Registries",
"testing_api": "Testing API"
}
},
"publishing": {
"name": "Publishing Modules"
},
"embedding_deno": {
"name": "Embedding Deno"
},
"help": {
"name": "Help"
},
"contributing": {
"name": "Contributing",
"children": {
"building_from_source": "Building from Source",
"web_platform_tests": "Web Platform Tests",
"style_guide": "Style Guide",
"architecture": "Architecture",
"profiling": "Profiling",
"release_schedule": "Release Schedule"
}
}
}