-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1044 lines (1017 loc) · 47.2 KB
/
Copy pathindex.html
File metadata and controls
1044 lines (1017 loc) · 47.2 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weblisk — The Zero-Dependency Web Platform</title>
<meta name="description"
content="Zero-dependency web platform — reactive client, protocol server, autonomous agents, and a federated hub network. No npm. No bundler." />
<link rel="canonical" href="https://weblisk.dev/" />
<meta name="keywords"
content="javascript framework, zero dependency, islands architecture, autonomous agents, federation, hub network, AI agents, web platform, protocol-first, collaborative" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Weblisk — The Zero-Dependency Web Platform" />
<meta property="og:description"
content="The zero-dependency web platform. Security-first, AI-native full-stack framework — reactive client, protocol server, autonomous agents, and a federated hub network." />
<meta property="og:url" content="https://weblisk.dev/" />
<meta property="og:site_name" content="Weblisk" />
<meta property="og:image" content="https://weblisk.dev/images/social/og-image.png?v=2" />
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:locale" content="en_US">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Weblisk — The Zero-Dependency Web Platform" />
<meta name="twitter:description"
content="Security-first, AI-native full-stack framework — reactive client, protocol server, autonomous agents, and a federated hub network. Zero dependencies." />
<meta name="twitter:image" content="https://weblisk.dev/images/social/og-image.png?v=2" />
<meta name="twitter:site" content="@weblisk" />
<meta name="robots" content="index, follow">
<meta name="author" content="Avaropoint">
<meta property="article:published_time" content="2026-04-23T00:00:00Z">
<meta property="article:modified_time" content="2026-04-23T00:00:00Z">
<link rel="icon" href="/images/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
<meta name="theme-color" content="#1a1f36" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://avaropoint.com/#org",
"name": "Avaropoint",
"url": "https://avaropoint.com",
"logo": "https://weblisk.dev/images/mark/dark/icon-dark-512.png",
"sameAs": [
"https://github.com/avaropoint",
"https://x.com/weblisk",
"https://discord.gg/5CetAq9EgZ"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"@id": "https://weblisk.dev/#website",
"name": "Weblisk",
"url": "https://weblisk.dev",
"description": "The zero-dependency web platform. Security-first, AI-native full-stack framework with a reactive client, protocol server, autonomous agents, and a federated hub network.",
"publisher": { "@id": "https://avaropoint.com/#org" },
"inLanguage": "en"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"@id": "https://weblisk.dev/#app",
"name": "Weblisk",
"description": "The zero-dependency web platform. A security-first, AI-native full-stack framework — reactive client, protocol server, autonomous agents, and a federated hub network for cross-organization collaboration.",
"url": "https://weblisk.dev",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"author": { "@id": "https://avaropoint.com/#org" },
"license": "https://opensource.org/licenses/MIT",
"softwareVersion": "1.0.0",
"programmingLanguage": "JavaScript",
"codeRepository": "https://github.com/avaropoint/weblisk",
"isPartOf": { "@id": "https://weblisk.dev/#website" }
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"@id": "https://weblisk.dev/",
"name": "Weblisk — The Zero-Dependency Web Platform",
"url": "https://weblisk.dev/",
"description": "The zero-dependency web platform. Security-first, AI-native full-stack framework — reactive client, protocol server, autonomous agents, and a federated hub network.",
"isPartOf": { "@id": "https://weblisk.dev/#website" },
"about": { "@id": "https://weblisk.dev/#app" },
"inLanguage": "en"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Weblisk",
"item": "https://weblisk.dev/"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is Weblisk?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Weblisk is a zero-dependency web platform — a security-first, AI-native full-stack framework with a reactive client, protocol server, autonomous agents, and a federated hub network. It uses native ES modules and modern browser APIs with no npm, no bundler, and no node_modules."
}
},
{
"@type": "Question",
"name": "Why does Weblisk have zero dependencies?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Modern web frameworks pull in hundreds of open source packages — each one a potential security exposure, breaking change, or abandoned repo. Weblisk is entirely first-party code. No supply chain risk, no npm audit vulnerabilities, no dependency tree to manage."
}
},
{
"@type": "Question",
"name": "Does Weblisk need a build step?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. Weblisk uses native ES modules and import maps. Every page is a standalone HTML document that works directly in the browser. You can optionally run 'weblisk build' for production optimization, but it's not required for development."
}
},
{
"@type": "Question",
"name": "Is Weblisk free?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The Community tier with 52 core modules is completely free and MIT-licensed. Weblisk Pro adds 10 premium modules (analytics, A/B testing, data tables, charts, etc.) for a one-time per-domain fee."
}
},
{
"@type": "Question",
"name": "What browsers does Weblisk support?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Weblisk targets modern evergreen browsers that support ES modules, import maps, and the Navigation API — Chrome, Edge, Firefox, and Safari. It leverages native browser capabilities instead of polyfilling them."
}
}
]
}
</script>
<link rel="manifest" href="/manifest.webmanifest">
<link rel="preconnect" href="https://cdn.weblisk.dev" crossorigin>
<link rel="stylesheet" href="/css/styles.css" />
<script>
document.documentElement.dataset.theme =
localStorage.getItem("wl-theme") || "light";
</script>
<script type="importmap">
{ "imports": { "weblisk": "https://cdn.weblisk.dev/weblisk.js", "weblisk/": "https://cdn.weblisk.dev/" } }
</script>
</head>
<body>
<a href="#main-content" class="wl-skip-link">Skip to main content</a>
<!-- ─── Navbar ─── -->
<nav class="navbar" aria-label="Main navigation" data-island="/js/islands/nav.js" data-hydrate="load">
<div class="navbar-inner">
<a href="/" class="brand">
<img src="/images/mark/logo.svg" alt="Weblisk" width="28" height="28" />
<span>Weblisk</span>
<span class="version-badge">v1.0</span>
</a>
<div class="nav-links">
<a href="/" class="nav-link active" aria-current="page">Home</a>
<a href="/docs/" class="nav-link">Docs</a>
<a href="/features.html" class="nav-link">Features</a>
<a href="/marketplace/" class="nav-link">Marketplace</a>
<a href="/hub/" class="nav-link">Hub</a>
<a href="/server/" class="nav-link">Server</a>
<a href="/blueprints/" class="nav-link">Blueprints</a>
<a href="/agents/" class="nav-link">Agents</a>
<a href="/pro.html" class="nav-link">Pro <span class="pro-badge">New</span></a>
</div>
<div class="nav-actions">
<div class="nav-social">
<a href="https://github.com/avaropoint/weblisk" title="GitHub" aria-label="GitHub repository" rel="noopener noreferrer">
<i aria-hidden="true" class="wl-icon wl-i-github wl-icon-18"></i>
</a>
<a href="https://x.com/weblisk" title="X (Twitter)" aria-label="X (Twitter)" rel="noopener noreferrer">
<svg width="16" height="16" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
</div>
<button id="theme-toggle" type="button" title="Toggle theme" aria-label="Toggle theme">
<i aria-hidden="true" class="wl-icon wl-i-moon wl-icon-18" id="theme-icon"></i>
</button>
<button class="nav-toggle" id="nav-toggle" type="button" aria-label="Toggle menu" aria-expanded="false">
<i aria-hidden="true" class="wl-icon wl-i-menu wl-icon-20"></i>
</button>
</div>
</div>
</nav>
<main id="main-content">
<!-- ─── Hero ─── -->
<section class="hero">
<div class="hero-inner">
<span class="hero-badge"><span class="badge-dot" aria-hidden="true"></span> v1.0 — Zero
dependencies, zero build step</span>
<h1>
The zero-dependency web platform.
</h1>
<p class="hero-sub">
A full-stack web platform — security-first, AI-native, zero dependencies.
Reactive client, protocol server, autonomous agents, and a federated
hub network — built with the freedom to build, ship and run your way.
</p>
<div class="hero-actions">
<a href="/docs/quick-start.html" class="btn btn-primary">
Get Started
<i aria-hidden="true" class="wl-icon wl-i-arrow wl-icon-16"></i>
</a>
<a href="/docs/" class="btn btn-outline">Read the Docs</a>
</div>
<div class="install-cmd">
<span class="prompt" aria-hidden="true">$</span>
<code>curl -fsSL https://cdn.weblisk.dev/install.sh | sh</code>
<button class="copy-btn" type="button" aria-label="Copy install command"
data-copy="curl -fsSL https://cdn.weblisk.dev/install.sh | sh">
<i aria-hidden="true" class="wl-icon wl-i-copy wl-icon-16"></i>
</button>
</div>
</div>
</section>
<!-- ─── Stats Bar ─── -->
<section class="section section-soft" aria-label="Key metrics">
<div class="section-inner">
<div class="stats-bar">
<div class="stat-item">
<div class="stat-number">0</div>
<div class="stat-label">Dependencies</div>
</div>
<div class="stat-item">
<div class="stat-number"><5KB</div>
<div class="stat-label">Core size (gzip)</div>
</div>
<div class="stat-item">
<div class="stat-number">100</div>
<div class="stat-label">Lighthouse score</div>
</div>
<div class="stat-item">
<div class="stat-number">52</div>
<div class="stat-label">Built-in modules</div>
</div>
</div>
</div>
</section>
<!-- ─── Why Weblisk ─── -->
<section class="section" aria-labelledby="why-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Why Weblisk</span>
<h2 id="why-heading">You don't need hundreds of outdated packages to build amazing websites</h2>
<p>That's the whole reason Weblisk exists.</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon purple">
<i aria-hidden="true" class="wl-icon wl-i-shield wl-icon-24"></i>
</div>
<h3>The Supply Chain Problem</h3>
<p>
Build a Next.js app and you inherit 180+ open source packages — each one a potential
security exposure, breaking change, or abandoned repo. Nobody made a conscious choice
to accept that risk. It just became the default.
</p>
</div>
<div class="feature-card">
<div class="feature-icon cyan">
<i aria-hidden="true" class="wl-icon wl-i-lock wl-icon-24"></i>
</div>
<h3>The Security Reality</h3>
<p>
Supply chain attacks on npm are increasingly common. Maintainer burnout is documented.
AI-generated code is flooding ecosystems with low-quality contributions. Every dependency
is an attack surface you can't control.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-bolt wl-icon-24"></i>
</div>
<h3>The Browser Already Has It</h3>
<p>
The web platform has matured. ES modules, view transitions, the Navigation API,
web components, import maps — the browser gives you everything you need natively.
You just need a clean way to use it.
</p>
</div>
</div>
<div class="tip" style="max-width:800px;margin:1.5rem auto 0">
<strong>Weblisk is one framework, entirely our code.</strong> No bundler mixing server
and client JavaScript. No node_modules folder. No <code>npm audit</code> showing 47
vulnerabilities in packages you didn't even know you had. Just a modern, clean,
lightweight framework that gives you everything the browser has to offer — natively.
</div>
</div>
</section>
<!-- ─── Features Grid ─── -->
<section class="section section-soft" aria-labelledby="features-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Features</span>
<h2 id="features-heading">
Everything you need, nothing you don't
</h2>
<p>So what do you get when you strip away the dependency tree? A framework that's smaller, faster, and more secure — with 52 modules you import on demand.</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon purple">
<i aria-hidden="true" class="wl-icon wl-i-box wl-icon-24"></i>
</div>
<h3>Zero Dependencies</h3>
<p>
No npm install cascade. No node_modules. Just native ES modules
and modern browser APIs you already know.
</p>
</div>
<div class="feature-card">
<div class="feature-icon cyan">
<i aria-hidden="true" class="wl-icon wl-i-bolt wl-icon-24"></i>
</div>
<h3>No Build Step</h3>
<p>
No Webpack, Vite, or Rollup. Write HTML, CSS, and JS — refresh
the browser and it works.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-layers wl-icon-24"></i>
</div>
<h3>Islands Architecture</h3>
<p>
HTML renders instantly. JavaScript loads only for interactive
regions — true progressive enhancement.
</p>
</div>
<div class="feature-card">
<div class="feature-icon orange">
<i aria-hidden="true" class="wl-icon wl-i-refresh wl-icon-24"></i>
</div>
<h3>Reactive Signals</h3>
<p>
Fine-grained reactivity without a virtual DOM diffing overhead.
Change data, DOM updates surgically.
</p>
</div>
<div class="feature-card">
<div class="feature-icon pink">
<i aria-hidden="true" class="wl-icon wl-i-shield wl-icon-24"></i>
</div>
<h3>Security Built In</h3>
<p>
CSP headers, CSRF tokens, input sanitization, permissions
policies — all native modules, not afterthoughts.
</p>
</div>
<div class="feature-card">
<div class="feature-icon yellow">
<i aria-hidden="true" class="wl-icon wl-i-globe wl-icon-24"></i>
</div>
<h3>View Transitions</h3>
<p>
Native cross-document view transitions make multi-page
navigation feel like a single-page app.
</p>
</div>
</div>
</div>
</section>
<!-- ─── Code Showcase ─── -->
<section class="section" aria-labelledby="code-heading">
<div class="section-inner">
<div class="feature-highlight">
<div class="feature-highlight-text">
<span class="section-label">How it works</span>
<h3 id="code-heading">
Reactivity without the ceremony
</h3>
<p>
Islands are plain JavaScript functions. Import a signal, wire
up an effect, and the DOM updates itself — no JSX, no
template language, no framework boilerplate.
</p>
<ul class="check-list">
<li>Works without JavaScript enabled</li>
<li>Hydrates on load, idle, visible, or media query</li>
<li>Each island loads independently — no global bundle</li>
<li>Full TypeScript definitions included</li>
</ul>
</div>
<div class="code-window">
<div class="code-header">
<div class="code-dots">
<span class="dot-red"></span><span class="dot-yellow"></span><span class="dot-green"></span>
</div>
<span class="code-title">counter.js</span>
<button class="code-copy" type="button" aria-label="Copy code" data-copy-target="code-counter">
<i aria-hidden="true" class="wl-icon wl-i-copy wl-icon-14"></i>
</button>
</div>
<div class="code-body">
<pre id="code-counter"><span class="syn-k">import</span> <span class="syn-p">{</span> signal<span class="syn-p">,</span> effect <span class="syn-p">}</span> <span class="syn-k">from</span> <span class="syn-s">'weblisk'</span><span class="syn-p">;</span>
<span class="syn-k">export default function</span> <span class="syn-f">counter</span><span class="syn-p">(</span>el<span class="syn-p">)</span> <span class="syn-p">{</span>
<span class="syn-k">const</span> <span class="syn-p">[</span>count<span class="syn-p">,</span> setCount<span class="syn-p">]</span> <span class="syn-p">=</span> <span class="syn-f">signal</span><span class="syn-p">(</span><span class="syn-n">0</span><span class="syn-p">);</span>
<span class="syn-k">const</span> btn <span class="syn-p">=</span> el.<span class="syn-f">querySelector</span><span class="syn-p">(</span><span class="syn-s">'button'</span><span class="syn-p">);</span>
btn.<span class="syn-f">addEventListener</span><span class="syn-p">(</span><span class="syn-s">'click'</span><span class="syn-p">,</span> <span class="syn-p">()</span> <span class="syn-k">=></span>
<span class="syn-f">setCount</span><span class="syn-p">(</span><span class="syn-f">count</span><span class="syn-p">()</span> <span class="syn-p">+</span> <span class="syn-n">1</span><span class="syn-p">)</span>
<span class="syn-p">);</span>
<span class="syn-f">effect</span><span class="syn-p">(()</span> <span class="syn-k">=></span> <span class="syn-p">{</span>
btn.textContent <span class="syn-p">=</span> <span class="syn-s">`Count: ${<span class="syn-f">count</span><span class="syn-p">()</span>}`</span><span class="syn-p">;</span>
<span class="syn-p">});</span>
<span class="syn-p">}</span></pre>
</div>
</div>
</div>
</div>
</section>
<!-- ─── HTML Integration ─── -->
<section class="section section-soft" aria-labelledby="html-heading">
<div class="section-inner">
<div class="feature-highlight" style="direction: rtl">
<div class="feature-highlight-text" style="direction: ltr">
<span class="section-label">Just HTML</span>
<h3 id="html-heading">Two attributes. That's the entire API.</h3>
<p>
Point <code>data-island</code> at your script and choose when to
hydrate. No config files, no routing tables, no provider
wrappers.
</p>
<ul class="check-list">
<li>Server-rendered HTML works before JS loads</li>
<li>
Lazy hydration: <code>load</code>, <code>idle</code>,
<code>visible</code>, <code>media</code>
</li>
<li>Drop into any existing page — no rewrite needed</li>
<li>Works with any backend: Rails, Django, PHP, static</li>
</ul>
</div>
<div class="code-window" style="direction: ltr">
<div class="code-header">
<div class="code-dots">
<span class="dot-red"></span><span class="dot-yellow"></span><span class="dot-green"></span>
</div>
<span class="code-title">index.html</span>
<button class="code-copy" type="button" aria-label="Copy code" data-copy-target="code-html">
<i aria-hidden="true" class="wl-icon wl-i-copy wl-icon-14"></i>
</button>
</div>
<div class="code-body">
<pre
id="code-html"><span class="syn-t"><div</span> <span class="syn-a">data-island</span><span class="syn-p">=</span><span class="syn-s">"/islands/counter.js"</span>
<span class="syn-a">data-hydrate</span><span class="syn-p">=</span><span class="syn-s">"visible"</span><span class="syn-t">></span>
<span class="syn-t"><h2></span>Live Counter<span class="syn-t"></h2></span>
<span class="syn-t"><button></span>Count: 0<span class="syn-t"></button></span>
<span class="syn-t"></div></span>
<span class="syn-c"><!-- That's it. No build. No bundle. --></span>
<span class="syn-t"><script</span> <span class="syn-a">type</span><span class="syn-p">=</span><span class="syn-s">"module"</span>
<span class="syn-a">src</span><span class="syn-p">=</span><span class="syn-s">"/weblisk/weblisk.js"</span><span class="syn-t">></script></span></pre>
</div>
</div>
</div>
</div>
</section>
<!-- ─── More Features Grid ─── -->
<section class="section" aria-labelledby="more-features-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Batteries included</span>
<h2 id="more-features-heading">Every module, built in</h2>
<p>No npm install. No plugin ecosystem to navigate. It's all here, ready to import.</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon purple">
<i aria-hidden="true" class="wl-icon wl-i-globe wl-icon-24"></i>
</div>
<h3>Client-Side Router</h3>
<p>
Navigation API interceptor upgrades MPA links to SPA-style
content swaps. Prefetch via Speculation Rules.
</p>
</div>
<div class="feature-card">
<div class="feature-icon cyan">
<i aria-hidden="true" class="wl-icon wl-i-check wl-icon-24"></i>
</div>
<h3>State Management</h3>
<p>
Persistent key-value store with <code>localStorage</code> sync.
Cross-tab reactivity via <code>BroadcastChannel</code>.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-star wl-icon-24"></i>
</div>
<h3>PWA & Offline</h3>
<p>
Service worker registration, install prompts, cache strategies,
and background sync — all built-in modules.
</p>
</div>
<div class="feature-card">
<div class="feature-icon orange">
<i aria-hidden="true" class="wl-icon wl-i-check wl-icon-24"></i>
</div>
<h3>Testing Utilities</h3>
<p>
DOM assertions, mock signals, mount helpers, and event simulation.
Framework-native, no Jest or Vitest required.
</p>
</div>
<div class="feature-card">
<div class="feature-icon pink">
<i aria-hidden="true" class="wl-icon wl-i-bolt wl-icon-24"></i>
</div>
<h3>Priority Scheduler</h3>
<p>
Yield to the main thread between tasks. Critical, high, normal,
and low priorities keep your UI responsive.
</p>
</div>
<div class="feature-card">
<div class="feature-icon yellow">
<i aria-hidden="true" class="wl-icon wl-i-globe wl-icon-24"></i>
</div>
<h3>Accessibility</h3>
<p>
Focus trapping, ARIA live regions, reduced-motion detection,
and locale-aware Intl formatting — not an afterthought.
</p>
</div>
<div class="feature-card">
<div class="feature-icon purple">
<i aria-hidden="true" class="wl-icon wl-i-chart wl-icon-24"></i>
</div>
<h3>Performance Tooling</h3>
<p>
Web Vitals observer, lazy images, asset prefetching via
Speculation Rules, and a render budget scheduler.
</p>
</div>
<div class="feature-card">
<div class="feature-icon cyan">
<i aria-hidden="true" class="wl-icon wl-i-layers wl-icon-24"></i>
</div>
<h3>Web Workers</h3>
<p>
Move heavy computation off the main thread with a simple
<code>dispatch</code> / <code>onMessage</code> worker bridge.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-box wl-icon-24"></i>
</div>
<h3>CLI Tooling</h3>
<p>
Scaffold, dev server, build with minification & fingerprinting,
and update — one binary, no Node.js needed.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-book wl-icon-24"></i>
</div>
<h3>Blueprint-Driven DX</h3>
<p>
Describe your site as YAML declarations — pages, components, theme,
conventions. Generate the entire codebase via AI. Zero hand-written boilerplate.
</p>
</div>
<div class="feature-card">
<div class="feature-icon orange">
<i aria-hidden="true" class="wl-icon wl-i-refresh wl-icon-24"></i>
</div>
<h3>CDN-First Delivery</h3>
<p>
Import maps rewrite to your CDN at build time. Ship the framework
from the edge — zero latency penalty.
</p>
</div>
<div class="feature-card">
<div class="feature-icon pink">
<i aria-hidden="true" class="wl-icon wl-i-shield wl-icon-24"></i>
</div>
<h3>Network Layer</h3>
<p>
Fetch wrapper with retries, timeouts, and request deduplication.
Real-time via <code>EventSource</code> and WebSocket helpers.
</p>
</div>
<div class="feature-card">
<div class="feature-icon yellow">
<i aria-hidden="true" class="wl-icon wl-i-bell wl-icon-24"></i>
</div>
<h3>DevTools Overlay</h3>
<p>
Activate with <code>?wl-debug</code> — see island status,
performance markers, and page meta at a glance.
</p>
</div>
</div>
</div>
</section>
<!-- ─── Signals Code Example ─── -->
<section class="section section-soft" aria-labelledby="signals-heading">
<div class="section-inner">
<div class="feature-highlight">
<div class="feature-highlight-text">
<span class="section-label">Reactive</span>
<h3 id="signals-heading">
Signals that feel like plain variables
</h3>
<p>
No decorators. No observables. No boilerplate. Create a signal,
use it, and the DOM updates itself. Derived state and effects
are just functions.
</p>
<ul class="check-list">
<li>No virtual DOM overhead</li>
<li>Synchronous, predictable updates</li>
<li>Automatic dependency tracking</li>
<li>Memory-safe — cleaned up on disconnect</li>
</ul>
</div>
<div class="code-window">
<div class="code-header">
<div class="code-dots">
<span class="dot-red"></span><span class="dot-yellow"></span><span class="dot-green"></span>
</div>
<span class="code-title">todo.js</span>
<button class="code-copy" type="button" aria-label="Copy code" data-copy-target="code-todo">
<i aria-hidden="true" class="wl-icon wl-i-copy wl-icon-14"></i>
</button>
</div>
<div class="code-body">
<pre id="code-todo"><span class="syn-k">import</span> <span class="syn-p">{</span> signal<span class="syn-p">,</span> computed<span class="syn-p">,</span> effect <span class="syn-p">}</span> <span class="syn-k">from</span> <span class="syn-s">'weblisk'</span><span class="syn-p">;</span>
<span class="syn-k">export default function</span> <span class="syn-f">todo</span><span class="syn-p">(</span>el<span class="syn-p">)</span> <span class="syn-p">{</span>
<span class="syn-k">const</span> <span class="syn-p">[</span>items<span class="syn-p">,</span> setItems<span class="syn-p">]</span> <span class="syn-p">=</span> <span class="syn-f">signal</span><span class="syn-p">([]);</span>
<span class="syn-k">const</span> remaining <span class="syn-p">=</span> <span class="syn-f">computed</span><span class="syn-p">(()</span> <span class="syn-k">=></span>
<span class="syn-f">items</span><span class="syn-p">().</span><span class="syn-f">filter</span><span class="syn-p">(</span>t <span class="syn-k">=></span> <span class="syn-p">!</span>t.done<span class="syn-p">).</span>length
<span class="syn-p">);</span>
<span class="syn-f">effect</span><span class="syn-p">(()</span> <span class="syn-k">=></span> <span class="syn-p">{</span>
el.<span class="syn-f">querySelector</span><span class="syn-p">(</span><span class="syn-s">'.count'</span><span class="syn-p">)</span>
.textContent <span class="syn-p">=</span> <span class="syn-s">`${<span class="syn-f">remaining</span><span class="syn-p">()</span>} left`</span><span class="syn-p">;</span>
<span class="syn-p">});</span>
<span class="syn-p">}</span></pre>
</div>
</div>
</div>
</div>
</section>
<!-- ─── Comparison Table ─── -->
<section class="section" aria-labelledby="compare-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Comparison</span>
<h2 id="compare-heading">How Weblisk stacks up</h2>
<p>
See how Weblisk compares to popular frameworks on the things that
matter.
</p>
</div>
<div style="overflow-x: auto">
<table class="comparison-table" role="table">
<thead>
<tr>
<th scope="col">Feature</th>
<th scope="col" class="highlight col-highlight">Weblisk</th>
<th scope="col">Next.js</th>
<th scope="col">Astro</th>
<th scope="col">SvelteKit</th>
</tr>
</thead>
<tbody>
<tr>
<td>Zero dependencies</td>
<td class="yes col-highlight">Yes</td>
<td class="no">180+</td>
<td class="no">100+</td>
<td class="no">40+</td>
</tr>
<tr>
<td>No build step required</td>
<td class="yes col-highlight">Yes</td>
<td class="no">Required</td>
<td class="no">Required</td>
<td class="no">Required</td>
</tr>
<tr>
<td>Islands architecture</td>
<td class="yes col-highlight">Native</td>
<td class="no">No</td>
<td class="yes">Yes</td>
<td class="no">No</td>
</tr>
<tr>
<td>Works without JS</td>
<td class="yes col-highlight">Yes</td>
<td class="partial">Partial</td>
<td class="yes">Yes</td>
<td class="partial">Partial</td>
</tr>
<tr>
<td>TypeScript types</td>
<td class="yes col-highlight">Included</td>
<td class="yes">Included</td>
<td class="yes">Included</td>
<td class="yes">Included</td>
</tr>
<tr>
<td>Security modules</td>
<td class="yes col-highlight">Built-in</td>
<td class="no">Add-on</td>
<td class="no">Add-on</td>
<td class="no">Add-on</td>
</tr>
<tr>
<td>PWA support</td>
<td class="yes col-highlight">Built-in</td>
<td class="no">Add-on</td>
<td class="no">Add-on</td>
<td class="no">Add-on</td>
</tr>
<tr>
<td>Core size (gzip)</td>
<td class="yes col-highlight"><5 KB</td>
<td class="no">~90 KB</td>
<td class="partial">~30 KB</td>
<td class="partial">~15 KB</td>
</tr>
<tr>
<td>View transitions</td>
<td class="yes col-highlight">Built-in</td>
<td class="no">Add-on</td>
<td class="yes">Built-in</td>
<td class="no">Add-on</td>
</tr>
<tr>
<td>Drop-in compatible</td>
<td class="yes col-highlight">Yes</td>
<td class="no">Own project</td>
<td class="no">Own project</td>
<td class="no">Own project</td>
</tr>
<tr>
<td>Server runtime</td>
<td class="yes col-highlight">Any</td>
<td class="no">Node.js</td>
<td class="no">Node.js</td>
<td class="no">Node.js</td>
</tr>
<tr>
<td>Deploy to</td>
<td class="yes col-highlight">Any host</td>
<td class="no">Node.js hosts</td>
<td class="no">Node.js / static</td>
<td class="no">Node.js hosts</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- ─── Integration ─── -->
<section class="section section-soft" aria-labelledby="integration-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Drop-in</span>
<h2 id="integration-heading">Works with your existing stack</h2>
<p>
Weblisk doesn't replace your backend. Add it to any project with a
single script tag.
</p>
</div>
<div class="integration-grid">
<div class="integration-card">
<div class="int-logo" style="background: rgba(221, 75, 57, 0.1); color: #e44d26">
♦
</div>
<div>
<h3>Plain HTML</h3>
<p>Static sites, landing pages, prototypes</p>
</div>
</div>
<div class="integration-card">
<div class="int-logo" style="background: rgba(139, 0, 0, 0.1); color: #cc0000">
R
</div>
<div>
<h3>Ruby on Rails</h3>
<p>Drop into ERB templates</p>
</div>
</div>
<div class="integration-card">
<div class="int-logo" style="background: rgba(9, 132, 61, 0.1); color: #09843d">
D
</div>
<div>
<h3>Django</h3>
<p>Use in Django templates</p>
</div>
</div>
<div class="integration-card">
<div class="int-logo" style="background: rgba(119, 123, 180, 0.1); color: #777bb4">
P
</div>
<div>
<h3>PHP / Laravel</h3>
<p>Add to Blade templates</p>
</div>
</div>
<div class="integration-card">
<div class="int-logo" style="background: rgba(0, 122, 204, 0.1); color: #007acc">
E
</div>
<div>
<h3>Express / Node</h3>
<p>Serve alongside any Node backend</p>
</div>
</div>
<div class="integration-card">
<div class="int-logo" style="background: rgba(0, 172, 193, 0.1); color: #00acc1">
G
</div>
<div>
<h3>Go / Gin</h3>
<p>Static assets in Go backends</p>
</div>
</div>
</div>
</div>
</section>
<!-- ─── Platform ─── -->
<section class="section" aria-labelledby="platform-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Beyond the Browser</span>
<h2 id="platform-heading">A complete platform — client, server, agents, and a global network</h2>
<p>Everything above is the client framework. But Weblisk is also a protocol-first server architecture, autonomous agents, and a federated hub network where organizations collaborate.</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon purple">
<i aria-hidden="true" class="wl-icon wl-i-globe wl-icon-24"></i>
</div>
<h3><a href="/server/">Server & Protocol</a></h3>
<p>
An open specification for lightweight servers. Define the protocol once — implement
in Go, Rust, Python, or any language. Runtime-agnostic by design.
</p>
</div>
<div class="feature-card">
<div class="feature-icon cyan">
<i aria-hidden="true" class="wl-icon wl-i-book wl-icon-24"></i>
</div>
<h3><a href="/blueprints/">Blueprints</a></h3>
<p>
Declarative specifications for APIs, domains, and workflows.
Define once, implement anywhere — no lock-in, no vendor coupling.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-bolt wl-icon-24"></i>
</div>
<h3><a href="/agents/">Agents</a></h3>
<p>
Autonomous services — SEO analysis, content quality, health monitoring,
background sync, scheduled tasks. Sandboxed, portable, and AI-ready.
</p>
</div>
<div class="feature-card">
<div class="feature-icon orange">
<i aria-hidden="true" class="wl-icon wl-i-shield wl-icon-24"></i>
</div>
<h3><a href="/server/hub.html">Hub</a></h3>
<p>
Every deployment is a self-sovereign hub. Hubs federate to form a global
network — cryptographic data contracts, cross-org collaboration, EDI replacement.
</p>
</div>
</div>
</div>
</section>
<!-- ─── Hub Network ─── -->
<section class="section section-soft" aria-labelledby="hub-heading">
<div class="section-inner">
<div class="section-header">
<span class="section-label">Collaboration</span>
<h2 id="hub-heading">Agents that work together across organizations</h2>
<p>
Traditional B2B integration requires EDI, middleware, and months of custom work.
Weblisk hubs federate natively — agents collaborate across organizational boundaries
with cryptographically enforced data contracts.
</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon purple">
<i aria-hidden="true" class="wl-icon wl-i-shield wl-icon-24"></i>
</div>
<h3>Self-Sovereign</h3>
<p>
Every hub owns its orchestrator, domains, agents, data, and policies.
No central authority. No vendor lock-in. Your data never leaves your boundary.
</p>
</div>
<div class="feature-card">
<div class="feature-icon cyan">
<i aria-hidden="true" class="wl-icon wl-i-layers wl-icon-24"></i>
</div>
<h3>Federated Trust</h3>
<p>
Ed25519 identity signing, behavioral fingerprinting, and data boundary
contracts. Trust is verified, not assumed.
</p>
</div>
<div class="feature-card">
<div class="feature-icon green">
<i aria-hidden="true" class="wl-icon wl-i-bolt wl-icon-24"></i>
</div>
<h3>Domain Intelligence</h3>
<p>
Three free domains — SEO, Content Quality, and Health Monitoring —
ship with every hub. Each domain coordinates specialized work agents.
</p>
</div>
</div>
</div>
</section>
</main>
<!-- ─── Footer ─── -->
<footer class="footer">
<div class="footer-inner">
<div class="footer-top">
<div class="footer-brand">
<a href="/" class="brand">
<img src="/images/mark/logo.svg" alt="Weblisk" width="24" height="24" />
<span>Weblisk</span>
</a>
<p class="footer-tagline">
The zero-dependency web platform — from browser to federated agent intelligence.
</p>
</div>
<div class="footer-nav">
<div class="footer-col">
<h4>Product</h4>
<a href="/docs/quick-start.html">Get Started</a>
<a href="/docs/">Documentation</a>
<a href="/features.html">Features</a>
<a href="/marketplace/">Marketplace</a>
<a href="/hub/">Hub</a>