Skip to content

Commit 281ac9b

Browse files
committed
#7093 article navigation
1 parent 71b47bc commit 281ac9b

5 files changed

Lines changed: 40 additions & 1 deletion

learn/blog/v10-deep-dive-functional-components.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*(Part 3 of 5 in the v10 blog series)*
2+
13
# Beyond Hooks: A New Breed of Functional Components for a Multi-Threaded World
24

35
If you're a seasoned React developer, you've mastered the art of hooks. You know how to build complex, stateful UIs with
@@ -279,3 +281,8 @@ deep dive on the **Two-Tier Reactivity System**.
279281

280282
Next, we will look at how this architecture revolutionizes the very way we render UIs with the Asymmetric VDOM
281283
and JSON Blueprints.
284+
285+
---
286+
287+
[<-- Previous: Deep Dive: The Two-Tier Reactivity System](./v10-deep-dive-reactivity.md)
288+
[Next: Deep Dive: The VDOM Revolution - JSON Blueprints & Asymmetric Rendering -->](./v10-deep-dive-vdom-revolution.md)

learn/blog/v10-deep-dive-reactivity.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*(Part 2 of 5 in the v10 blog series)*
2+
13
# Deep Dive: Named vs. Anonymous State - A New Era of Component Reactivity
24

35
In the main article of our series, we explored the "heartbreak" of modern frontend development: the constant battle
@@ -341,3 +343,8 @@ and no complex queueing logic to write.
341343
This is the ultimate expression of the Neo.mjs philosophy: using the core reactivity engine not just to render UIs, but
342344
to orchestrate the entire application's asynchronous state and logic. It's the final proof that a robust reactive foundation
343345
doesn't just simplify your code — it makes entirely new patterns of development possible.
346+
347+
---
348+
349+
[<-- Previous: A Frontend Love Story](./v10-post1-love-story.md)
350+
[Next: A New Breed of Functional Components -->](./v10-deep-dive-functional-components.md)

learn/blog/v10-deep-dive-state-provider.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*(Part 5 of 5 in the v10 blog series)*
2+
13
# Deep Dive: The State Provider Revolution
24

35
**Subtitle: How Neo.mjs Delivers Intuitive State Management Without the Performance Tax**
@@ -68,6 +70,8 @@ provider.setData({
6870
});
6971
```
7072

73+
Let's see this in action. The following live example demonstrates how a component can bind to and modify state from a provider.
74+
7175
```javascript live-preview
7276
import Button from 'neo.mjs/src/button/Base.mjs';
7377
import Container from 'neo.mjs/src/container/Base.mjs';
@@ -416,3 +420,7 @@ philosophy. By building on a foundation of true, fine-grained reactivity, it del
416420
expect, removing hidden gotchas and making state management a reliable and enjoyable process.
417421

418422
This is what a ground-up reactive system enables, and it's a cornerstone of the developer experience in Neo.mjs v10.
423+
424+
---
425+
426+
[<-- Previous: Deep Dive: The VDOM Revolution - JSON Blueprints & Asymmetric Rendering](./v10-deep-dive-vdom-revolution.md)

learn/blog/v10-deep-dive-vdom-revolution.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*(Part 4 of 5 in the v10 blog series)*
2+
13
# Deep Dive: The VDOM Revolution - JSON Blueprints & Asymmetric Rendering
24

35
In our previous deep dives, we've established the "why" and the "what" of Neo.mjs v10. We've seen how the
@@ -179,3 +181,8 @@ This is what it means to build a framework not just for the web of today, but fo
179181

180182
In our final article, we'll bring all three revolutions—Reactivity, Functional Components, and the VDOM—together and
181183
invite you to fall in love with frontend development all over again.
184+
185+
---
186+
187+
[<-- Previous: Deep Dive: A New Breed of Functional Components](./v10-deep-dive-functional-components.md)
188+
[Next: Deep Dive: The State Provider Revolution -->](./v10-deep-dive-state-provider.md)

learn/blog/v10-post1-love-story.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,14 @@ It's time to fall in love with frontend again.
124124

125125
**Dive into the examples and see the performance for yourself:** [Link to Examples Portal]
126126

127-
**Start building your first Neo.mjs app in minutes:** `npx neo-app@latest`
127+
**Start building your first Neo.mjs app in minutes:** `npx neo-app@latest`
128+
129+
---
130+
131+
## The v10 Blog Post Series
132+
133+
1. **A Frontend Love Story** (This article)
134+
2. [Deep Dive: The Two-Tier Reactivity System](./v10-deep-dive-reactivity.md)
135+
3. [Deep Dive: A New Breed of Functional Components](./v10-deep-dive-functional-components.md)
136+
4. [Deep Dive: The VDOM Revolution - JSON Blueprints & Asymmetric Rendering](./v10-deep-dive-vdom-revolution.md)
137+
5. [Deep Dive: The State Provider Revolution](./v10-deep-dive-state-provider.md)

0 commit comments

Comments
 (0)