Skip to content

Sponsor

Sponsor

What to Learn Next

You Have the Foundation

At this point, you understand:

  • Why DOM Helpers exists and what problems it addresses
  • How the ten modules are organized and what each one is responsible for
  • Why modules and sub-modules are kept separate
  • The recommended patterns for accessing and updating elements
  • How core, enhancers, conditions, storage, and the other modules work together
  • What a structured DOM Helpers codebase looks like compared to plain JavaScript

This is the orientation layer. You know the map before exploring the territory.

Now it is time to learn each module in depth, starting from the foundation and working outward.


Learning in this order ensures that each new concept builds on something you already understand. Skipping ahead is possible, but you may encounter API references to things you have not yet learned.


Step 1 — The Core Module

Start here. Everything else in DOM Helpers connects back to the core.

The core introduces the three helpers — Elements, Collections, Selector — and the .update() method that every element carries. Once you understand these, you understand the fundamental pattern that runs through the entire library.

Start with:


Step 2 — Deep-Dive Access Guides

After the core overview, the access guides cover each helper in exhaustive detail. These are reference-level documentation organized by specific method or pattern.

Elements access:

Collections access:

Selector access:


Step 3 — The Update Method in Depth

The .update() method is central to how DOM Helpers works. After you understand the core, study the full update method guide to learn every update type and when to use each one.

Multi-element updaters:


Step 4 — Enhancers

Once you are comfortable with the core, enhancers will feel natural. They all follow the same patterns you already know — they just make common operations shorter.

Learn them in the order that matches how you use the library:

Shortcuts for quicker access:

Updaters for more concise updates:


Step 5 — Reactive

The reactive module introduces state management with automatic propagation. When state changes, effects re-run, computed values update, and the DOM reflects the new state — all without any manual calls.

Always use the shortcut form — state(), effect(), computed(), watch(), batch(), ref(), refs() — not the ReactiveUtils. prefix.

Start with the overview:

Then the full documentation:


Step 6 — Conditions

After you are fluent in accessing and updating elements, Conditions introduces the next structural level: instead of writing update calls in event handlers, you declare what the DOM should look like for each state.


Step 7 — Storage

StorageUtils can be learned at any point. It does not depend on the core, reactive, or conditions — it is a standalone utility. But understanding it after the core and reactive lets you see immediately how it connects: storage holds persisted state, reactive state holds the live version, and watchers keep them in sync.


Step 8 — createElement

createElement and createElement.bulk() are used when you need to build DOM elements from scratch in JavaScript. They are not required for working with existing HTML, but they are essential for dynamic UIs that create elements on demand.


Step 9 — Native Enhance

The native-enhance module is ideal if you have an existing project that already uses document.getElementById, document.getElementsByClassName, or querySelector. Load it and those calls automatically return elements with full DOM Helpers power — no refactoring required.


Step 10 — DOM Form

The DOM Form module (Forms) gives every form a structured API for reading values, validating fields, and submitting data. Learn this when your project involves forms that go beyond a simple one-off submission.


Step 11 — Animation

The animation module extends every element and collection returned by the core with fadeIn, fadeOut, slideUp, slideDown, transform, and a chainable .animate() builder. All animations are promises — you can await them.


Step 12 — Async

AsyncHelpers covers the async utility patterns that appear in nearly every project: debounce, throttle, fetch with timeout and retry, sleep, parallel execution, and async event handler wrappers.


Step 13 — SPA Router

The SPA Router is the most complete module in the library. It handles client-side navigation, view mounting from <template> elements, animated transitions, declarative links, and navigation guards — all without a page reload.


A Note on Learning Pace

There is no requirement to learn everything before you start building. The core module alone — Elements, Collections, Selector, and .update() — is enough to build real, structured pages. Add enhancers when repetition appears. Add reactive when you need state that automatically propagates changes. Add Conditions when state-driven UI mapping gets complex. Add Storage when persistence is needed. Add DOM Form, Animation, Async, and the Router as your project's requirements grow.

The library is layered intentionally so you can adopt it at your own pace without hitting walls.


Begin Here

If you have not started yet, the first place to go is the core module introduction: