Get Started · Examples · Try the Demo · Docs · Discord
Welcome to Instant's vanilla javascript SDK.
db.subscribeQuery({ todos: {} }, (resp) => {
if (resp.error) {
renderError(resp.error.message);
return;
}
if (resp.data) {
render(resp.data); // wohoo!
}
});
Follow the getting started in vanilla Javascript tutorial to set up a live app in under 5 minutes! Or you can try a demo in your browser :).
If you have any questions, feel free to drop us a line on our Discord