Machine definitions
We often call machine definitions simply "machines".
Machine definitions name a logical machine.
For example, you might have a machine definition that represents a flow for a user in your app (like the onboarding machine) or a machine definition that represents the state of a user or entity (like a user machine or a machine for a document that might be shared across many users).
We call this a logical machine because your actual business logic lives in machine versions.
Each machine definition can have multiple machine versions associated with it but it has only one current version.
You can create many machine instances for each machine definition. When you create a machine instance, you can specify the machine version you want to use or State Backed will create an instance using the current version for that machine definition at the time that you create the instance.
Finally, machines can specify a set of indexes that can be used to find machine instances based on values from their context.
Without indexes, you can retrieve machine instances by their name (an indentifier that you provide when you create the instance).
With indexes, you can list, for example, all of the machine instances with a userId
value in their context that matches your current user.
So machine definitions are really just a name and an optional list of indexes. To learn how you'll specify your actual business logic, read on about machine versions.
Web dashboard
You can view and create machines in the web dashboard.
Use our in-browser code editor and visualizer to define machines and deploy directly from the web.
Click into a machine to view its versions, instances, or logs.
CLI
Creating a machine definition
By passing the --node
option, smply
will attempt to build your ts/js into a
single, self-contained javascript bundle suitable for deployment in our
web standards-like environment.
For this to work, you will need to have a package.json
and run npm install
.
Alternatively, you will soon be able to use Deno-style ESM specifiers for imports, skip the package.json
and npm
entirely, and pass the --deno
option.
Finally, you can run your own build step to produce a single-file bundle for
a web standards-like environment and pass its path to the --file
option.
# to create a machine definition without an initial machine version
smply machines create --machine <your-machine-name>
# to create a machine definition with an initial machine version
smply machines create --machine <your-machine-name> --node <your-machine.(ts|js)>
# to create a machine definition without an initial version but with indexes
smply machines create --machine <your-machine-name> --index <my-index> --index <my-index2>
# to create a machine definition with an initial version and indexes
smply machines create \
--machine <your-machine-name> \
--node <your-machine.(ts|js)> \
--index-selectors '{ "my-index": "$.jsonPath.inContext", "my-index2": "$.jsonPath.inContext" }'
Listing machine definitions
smply machines list
Retrieving information about a machine definition
smply machines get --machine <your-machine-name>
Client SDK
Creating a machine definition
You will generally want to use the smply CLI to create machines.
import { StateBackedClient } from "@statebacked/client";
const client = new StateBackedClient(token);
await client.machines.create("my-machine");
// you'll have to create a version before you can create instances
await client.machineVersions.create(
"my-machine",
{
makeCurrent: true,
clientInfo: "v0.1.1",
code: `
// JS code for your machine version
`
}
)