2022-08-04 13:42:53 +02:00
|
|
|
// @ts-check
|
2023-01-23 15:07:39 +05:30
|
|
|
|
2023-05-20 00:35:51 +01:00
|
|
|
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
2022-08-04 13:42:53 +02:00
|
|
|
const sidebars = {
|
2025-10-03 15:54:25 +10:00
|
|
|
build: [
|
2024-04-22 17:19:26 +01:00
|
|
|
{
|
2025-10-03 15:54:25 +10:00
|
|
|
type: "link",
|
|
|
|
|
label: "Home",
|
|
|
|
|
href: "/",
|
2024-04-22 17:19:26 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
2025-10-03 15:54:25 +10:00
|
|
|
label: "JavaScript SDK",
|
|
|
|
|
collapsed: false,
|
2024-04-22 17:19:26 +01:00
|
|
|
link: {
|
|
|
|
|
type: "doc",
|
2025-10-03 15:54:25 +10:00
|
|
|
id: "build/javascript/index",
|
2024-04-22 17:19:26 +01:00
|
|
|
},
|
|
|
|
|
items: [
|
2025-10-03 15:54:25 +10:00
|
|
|
"build/javascript/reliable-channels",
|
|
|
|
|
"build/javascript/light-send-receive",
|
|
|
|
|
"build/javascript/store-retrieve-messages",
|
|
|
|
|
"build/javascript/message-encryption",
|
|
|
|
|
"build/javascript/use-waku-react",
|
|
|
|
|
"build/javascript/use-waku-create-app",
|
|
|
|
|
"build/javascript/configure-discovery",
|
|
|
|
|
"build/javascript/run-waku-nodejs",
|
|
|
|
|
"build/javascript/debug-waku-dapp",
|
|
|
|
|
"build/javascript/manage-filter",
|
|
|
|
|
"build/javascript/faq",
|
2024-04-22 17:19:26 +01:00
|
|
|
{
|
|
|
|
|
type: "html",
|
|
|
|
|
value:
|
|
|
|
|
'<a href="https://examples.waku.org" target="_blank" rel="noopener noreferrer" class="menu__link external-link">@waku/sdk Examples<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "html",
|
|
|
|
|
value:
|
|
|
|
|
'<a href="https://js.waku.org" target="_blank" rel="noopener noreferrer" class="menu__link external-link">API Reference<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-10-03 15:54:25 +10:00
|
|
|
],
|
|
|
|
|
runNode: [
|
2024-05-16 18:22:15 +01:00
|
|
|
{
|
|
|
|
|
type: "link",
|
2025-10-03 15:54:25 +10:00
|
|
|
label: "Home",
|
|
|
|
|
href: "/",
|
2024-05-16 18:22:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
2025-10-03 15:54:25 +10:00
|
|
|
type: "category",
|
|
|
|
|
label: "Run a Waku Node",
|
|
|
|
|
collapsed: false,
|
|
|
|
|
link: {
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "run-node/index",
|
|
|
|
|
},
|
|
|
|
|
items: [
|
|
|
|
|
"run-node/run-docker-compose",
|
|
|
|
|
"run-node/run-docker",
|
|
|
|
|
"run-node/build-source",
|
|
|
|
|
"run-node/configure-discovery",
|
|
|
|
|
"run-node/find-node-address",
|
|
|
|
|
"run-node/config-methods",
|
|
|
|
|
"run-node/config-options",
|
|
|
|
|
"run-node/configure-nwaku",
|
|
|
|
|
"run-node/faq",
|
|
|
|
|
"run-node/upgrade-instructions",
|
|
|
|
|
{
|
|
|
|
|
type: "html",
|
|
|
|
|
value:
|
|
|
|
|
'<a href="https://waku-org.github.io/waku-rest-api/" target="_blank" rel="noopener noreferrer" class="menu__link external-link">REST API Reference<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-05-16 18:22:15 +01:00
|
|
|
},
|
2024-04-22 17:19:26 +01:00
|
|
|
],
|
|
|
|
|
learn: [
|
2025-10-03 15:54:25 +10:00
|
|
|
{
|
|
|
|
|
type: "link",
|
|
|
|
|
label: "Home",
|
|
|
|
|
href: "/",
|
|
|
|
|
},
|
|
|
|
|
"learn/index",
|
2024-04-22 17:19:26 +01:00
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
label: "Concepts",
|
|
|
|
|
collapsed: false,
|
|
|
|
|
items: [
|
|
|
|
|
"learn/concepts/protocols",
|
|
|
|
|
"learn/concepts/content-topics",
|
|
|
|
|
"learn/concepts/network-domains",
|
|
|
|
|
"learn/concepts/transports",
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
label: "Peer Discovery",
|
|
|
|
|
link: {
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "learn/concepts/peer-discovery",
|
|
|
|
|
},
|
|
|
|
|
items: [
|
|
|
|
|
"learn/concepts/static-peers",
|
|
|
|
|
"learn/concepts/dns-discovery",
|
|
|
|
|
"learn/concepts/discv5",
|
|
|
|
|
"learn/concepts/peer-exchange",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
"learn/security-features",
|
2025-10-03 15:54:25 +10:00
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
label: "Research",
|
|
|
|
|
link: {
|
|
|
|
|
type: "doc",
|
|
|
|
|
id: "learn/research/index",
|
|
|
|
|
},
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
label: "Benchmarks",
|
|
|
|
|
collapsed: false,
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "learn/research/benchmarks",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
label: "Research and Studies",
|
|
|
|
|
collapsed: false,
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
type: "autogenerated",
|
|
|
|
|
dirName: "learn/research/research-and-studies",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2024-04-22 17:19:26 +01:00
|
|
|
"learn/waku-vs-libp2p",
|
|
|
|
|
"learn/glossary",
|
|
|
|
|
"learn/faq",
|
|
|
|
|
],
|
2022-08-04 13:42:53 +02:00
|
|
|
};
|
|
|
|
|
|
2025-10-03 15:54:25 +10:00
|
|
|
module.exports = sidebars;
|