This is where you go for help with SkyState. The product code lives in a private repo, so we use this one to track bugs, answer questions, and collect feature requests.
If something is broken or you are stuck, open an issue. We read them.
SkyState gives you durable, versioned state in the cloud. You read and write it from the terminal, from your app through an SDK, or in the web console, and there is no infrastructure to set up. If you have used feature flags or remote config before, it is in that family, with versioning and environments added on top.
The docs at https://skystate.io cover the details, and the web console is at https://console.skystate.io.
Everything below is published to npm.
skystate is the command line tool. It manages durable, versioned state from the terminal.
npm install -g skystate
sky --helpInstalling it gives you two commands, sky and skystate. They do the same thing, so use whichever you like.
@skystate/core is the client library. It works in any JavaScript project and handles public state, hosted auth, and user state.
npm install @skystate/core@skystate/react is the React layer on top of core. You get a provider and hooks for the same public state, hosted auth, and user state.
npm install @skystate/reactOpen an issue in this repo for anything: a bug, a question, or an idea. If you are reporting a bug, it helps to include the package and version you are on, plus the steps that led to it.
For how-to questions and API details, start with the docs at https://skystate.io.