Stoxy is a state management API for all modern Web Technologies.
Stoxy allows you to easily handle, persist and update data in your DOM without the weight of a framework.
Official docs can be found here
Stoxy utilizes the browser's tooling with respect to your computer's memory.
Stoxy stores the data in a in-browser Database called IndexedDB, only keeping the latest 5 accessed objects in-memory for faster access.
Stoxy utilizes a promise-based use flow making it really easy to asynchronously read and write from the storage.
If your browser doesn't support IndexedDB, there's no need to worry. Stoxy recognizes these cases automatically, and opts out of using it and utilizes a in-memory system only.
The motivation behind Stoxy as to provide a simpler solution for cross-app state management.
With Stoxy you are up and running after writing just one line of code. After setting your first state object, you have a functional state system ready to be used.
import { write } from "@stoxy/core";
write("users", userList);
All of Stoxy's commands are 1-2 parameters long, and can be executed as "one-liners".
They are however extremely extendable due to the nature of the state management system of Stoxy. Some of the Stoxy core
functions like update
and remove
even take delegates or predicates as a parameter to give the developer
more control over their state management.
Stoxy ships with a small set of Web Components, which are framework agnostic components ready for use in any project.
The components are built to as reactive pieces of an application, updating their contents according to state change without the developer having to do any work.
When writing websites with dynamic content, the markdown can easily become a spaghetti of plain text and Javascript escaped variables inside a template literal. like:
<h1>Hello, ${user.name}</h1>
<p>Your profile has accumulated ${user.viewCount} views</p>
<p>Top 3 visitors on your page:</p>
<ul>
${
user.topVisitors.map(vis => `<li>${vis}</li>`);
}
</ul>
With Stoxy, the same markdown could be created without being in the same context as the data with:
<stoxy-object key="user" prefix="u.">
<h1>Hello, u.name</h1>
<p>Your profile has accumulated u.viewCount views</p>
<p>Top 3 visitors on your page:</p>
<ul>
<stoxy-repeat key="user.topVisitors" id="vis">
<li>vis</li>
</stoxy-repeat>
</ul>
</stoxy-object>
โ ๏ธ Dynamic content inside Stoxy Elements updates when the data does. Update once, DOM updates everywhere.
Stoxy also supports different libraries:
LitElement / Class based Components
class MyComponent extends StoxyElement(LitElement) {
static stoxyProperties = {
key: "example-data",
state: {
username: "World",
clicks: 0,
description: "This is a example of Stoxy Element Mixin",
},
init: true,
};
static get properties() {
return {
username: { type: String },
clicks: { type: Number },
description: { type: String },
};
}
constructor() {
super();
this.username = "";
this.clicks = 0;
this.description = "";
}
render() {
return html`
<h2>Hello, ${this.username}!</h2>
<p>You have clicked the clicker ${this.clicks} times</p>
<p>${this.description}</p>
`;
}
}
React/Preact with Hooks
import { useStoxy } from "@stoxy/hooks";
import React from "react";
export function Clicker() {
// You can rename the variables returned by useStoxy while destructuring
const { state: counterState, update: updateConter } = useStoxy(React, {
key: "demo.counter",
state: 0
});
function inc() {
// No need to add the key name here
updateCounter(c => c += 1);
}
return (
<div>
<p>Pushed {counterState} times</p>
<button onClick={inc} type="button">Click</button>
</div>
);
}
Stoxy comes shipped with persistence out of the box. There are many cases in which it is beneficial to persist the state data through page reloads and navigation. Wether it be stale-while-revalidate patterns, or just static information fetched from the API.
The Persistence in Stoxy is opt-in, meaning that you control exactly what information gets persisted.
The whole core set of Stoxy is built from smaller modules, which can be attached at will.
This means that you can use Stoxy only for managing state, and then handle all the events through subscribers, or you can go all in on Stoxy and deploy a whole application built with stoxy elements using barely any Javascript
Stoxy is a reactive state management system, meaning that when you update the data in Stoxy with the write
command,
all of the elements using that object will automatically update their content in the DOM.
No more need for flowing data around the whole system.
write('user', newData);
// Triggers update in the element below
<stoxy-object key="user" prefix="u.">
<p>Hello, u.name</p>
</stoxy-object>;
Stoxy will not update any element which's data didn't change, enhancing the performance greatly.
Only the DOM elements which had their data changed will be updated
To install the full stoxy suite, run
npm install @stoxy/stoxy
You can also install packages from the stoxy suite as standalone modules.
npm install @stoxy/core @stoxy/string @stoxy/repeat @stoxy/form @stoxy/object
Stoxy can be used currently in 3 ways, which interoperate between each other:
You can freely mix and match these implementations too!
import { write } from '@stoxy/core';
write("counter", 0);
import { write } from '@stoxy/core';
write("Shoppingcart", [{id: 123, name: "Free gift"}]);
import { read } from '@stoxy/core';
read('shoppingcart').then(shoppingCartItems => {
shoppingCartItems.map(item => console.log(item));
});
import { read } from '@stoxy/core';
async function getItems() {
const items = await read('shoppingcart');
return items;
}
import { sub } from '@stoxy/core';
sub("shoppingcart", updateItemCount);
function updateItemCount(e) {
write("itemcount", e.data.length);
}
import { clear } from '@stoxy/core';
clear('shoppingcart');
import { write, update } from '@stoxy/core';
write("counter", 0);
// Update counter every second
setInterval(() => {
update("counter", counter => counter += 1);
}, 1000);
import { remove } from '@stoxy/core';
// Removes product with the id 1
remove("shoppingcart", product => product.id === 1);
import { remove } from '@stoxy/core';
// Remove all products with a price over 5
remove("shoppingcart", product => product.price > 5);
import { remove } from '@stoxy/core';
// Remove all meat
remove("shoppingcart", removeMeat);
function removeMeat(product) {
if (product.type === "Meat" || product.type === "Chicken") {
return true;
}
return false;
}
import { persistKey } from '@stoxy/core';
persistKey('shoppingcart');
// with multiple keys
persistKey('shoppingcart', 'history', 'address');