Learn
Fundamental concepts in starfx
How does starfx
work? #
starfx
is a companion framework to react
that understands how to listen to
user events (e.g. clicks, form inputs, etc.), activate side-effects (e.g. fetch
api data, submit form data, update state), and then intelligently update the
view. If you are familiar with MVC:
react
is the View layerstarfx
are the Model and Controller layers
The high-level picture of starfx
is essentially a glorified pubsub system:
- The user goes to your app
- The view is generated with
react
- When a user interacts with your web app, events gets dispatched
starfx
listens for events and triggers side-effects (e.g. fetches API data, updates state, etc.)- An entirely new version of the state gets created
react
surgically updates the view based on changes to thestarfx
state- Rinse and repeat
It all happens as a single unidirectional loop.
How is starfx
different? #
starfx
is different in a number of ways.
We combine both state and side-effect management into a single cohesive unit. This streamlines the implementation of your web app.
Our business logic does not live inside of react
, rather, it lives inside of
the side-effect system. We are not shackled by react
lifecycle hooks, in fact,
starfx
has virtually no concept of react
at all -- except for a couple of
hooks. The entire system is designed, from the ground up, to not need react
at
all in order to function. At the end of the day, starfx
works by subscribing
to and publishing events. Those events could come from react
, but they could
also come from anywhere.
We have taken the best part about express
and koa
and applied it to fetching
API data on the front-end. What this means is that we have a powerful middleware
system that we can leverage on the front-end.
We built a state management system leveraging the concept of a database schema.
We took inspiration from zod to build an ergonomic and
powerful state system leveraging reusable slice helpers. With our schema and
custom built store, we can replace all of boilerplate with a single function
call createSchema()
.
Why does starfx
use generators? #
Generators give us -- the library authors -- more control over how side-effects
are handled within a javascript runtime environment. There are things that we
can do with generators that are just not possible using async
/await
. To
provide some specific examples, we need the ability to manage async operations
as a tree of tasks. We need the ability to have
structured concurrency
in order to granularly manipulate, manage, spawn, and teardown tasks.
Furthermore, async
/await
is implemented using generator functions. In
starfx
, not everything we want to await
is a Promise
!
There is so much more to why generators are awesome but at the end of the day,
to the end developer, you can treat generators the same as async
/await
.
If you are struggling to understand or are getting confused using generator functions, just use the effection async rosetta stone.
We highly recommend reading the Thinking in Effection page because it should help here.
Data strategy: preload then refresh #
Preloading is a first-class citizen in starfx
. It is the primary use case for
using it.
The idea is simple:
Preload most of your API data in the background and refresh it as the user interacts with your web app.
This is the biggest performance boost to using a single-page app. Since routing happens all client-side, it's beneficial to download data in the background while the user navigates through your web app. While you might be fetching slow API endpoints, it feels instantaneous because the data was preloaded.
When the user lands on your web app, initialize a preload thunk that will essentially sync the user's database locally, then when they navigate to a page that requires data, refresh that data as needed.
For example, let's say the root page /
requires a list of users while the
/mailboxes
page requires a list of mailboxes.
One the root page you would not only fetch the list of users, but you would also fetch the lists of mailboxes. When the user finally decides to click on the "Mailboxes" page, the page will act as if the data was loaded instantly because it was preloaded. So the user sees the data immediately, while at the same time you would also re-fetch the mailboxes.