-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (174 loc) · 6.46 KB
/
Copy pathindex.html
File metadata and controls
176 lines (174 loc) · 6.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Early Effect — functional Scala & ZIO libraries</title>
<meta name="description" content="Early Effect builds open-source functional Scala and ZIO libraries: type-safe SQL, state management, effectful FSMs, docs tooling, and more." />
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>" />
<style>
:root {
--bg: #0d1117;
--bg-card: #161b22;
--border: #30363d;
--text: #e6edf3;
--muted: #9198a1;
--accent: #7ee787;
--accent-dim: #2ea043;
--link: #79c0ff;
}
@media (prefers-color-scheme: light) {
:root {
--bg: #ffffff;
--bg-card: #f6f8fa;
--border: #d0d7de;
--text: #1f2328;
--muted: #59636e;
--accent: #1a7f37;
--accent-dim: #2ea043;
--link: #0969da;
}
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
header {
padding: 72px 0 40px;
text-align: center;
border-bottom: 1px solid var(--border);
}
.logo {
font-size: 3rem;
font-weight: 800;
letter-spacing: -0.02em;
margin: 0;
}
.logo .bolt { color: var(--accent); }
.tagline { color: var(--muted); font-size: 1.15rem; margin: 12px 0 0; }
.links { margin-top: 24px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.links a {
display: inline-block;
padding: 8px 18px;
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text);
font-weight: 600;
}
.links a:hover { border-color: var(--accent-dim); text-decoration: none; }
section { padding: 48px 0; }
h2 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 24px; font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px;
transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--accent-dim); transform: translateY(-2px); }
.card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.card h3 a { color: var(--text); }
.card h3 a:hover { color: var(--accent); text-decoration: none; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.card .lang {
display: inline-block;
margin-top: 12px;
font-size: 0.75rem;
color: var(--muted);
border: 1px solid var(--border);
border-radius: 999px;
padding: 2px 10px;
}
footer {
border-top: 1px solid var(--border);
padding: 32px 0 56px;
text-align: center;
color: var(--muted);
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<div class="wrap">
<h1 class="logo"><span class="bolt">⚡</span> Early Effect</h1>
<p class="tagline">Open-source functional Scala & ZIO libraries.</p>
<nav class="links">
<a href="https://github.com/early-effect">GitHub</a>
<a href="https://central.sonatype.com/namespace/io.github.russwyte">Maven Central</a>
</nav>
</div>
</header>
<main class="wrap">
<section>
<h2>Libraries</h2>
<div class="grid">
<div class="card">
<h3><a href="https://github.com/russwyte/saferis">saferis</a></h3>
<p>A type-safe SQL client and interpolator for Scala 3 and ZIO.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/marklit">marklit</a></h3>
<p>Write Scala docs where 2.13 and 3.x live happily in the same Markdown file — every block compiled and run by its own real compiler.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/conduit">conduit</a></h3>
<p>A unidirectional state management library utilizing ZIO.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/slayer">slayer</a></h3>
<p>N-arity, multi-param-list, generics-aware ZIO service stubbing for Scala 3.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/mechanoid">mechanoid</a></h3>
<p>A type-safe, effect-oriented finite state machine library for Scala 3 built on ZIO.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/schemanator">schemanator</a></h3>
<p>A json-schema generator for Scala.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/early-effect/Anode">Anode</a></h3>
<p>A Scala.JS facade for Preact with emphasis on functional/stateless components.</p>
<span class="lang">Scala.js</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/preactile">preactile</a></h3>
<p>A Scala.js UI library utilizing Preact.</p>
<span class="lang">Scala.js</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/Lettuzz">Lettuzz</a></h3>
<p>A ZIO-based Redis client wrapping Lettuce.</p>
<span class="lang">Scala</span>
</div>
<div class="card">
<h3><a href="https://github.com/russwyte/slabby">slabby</a></h3>
<p>MCP server for Slab knowledge base integration with AI coding agents.</p>
<span class="lang">TypeScript</span>
</div>
</div>
</section>
</main>
<footer>
<div class="wrap">
<p>© Early Effect · <a href="https://github.com/early-effect">github.com/early-effect</a></p>
</div>
</footer>
</body>
</html>