1. A new version of HTTP that adds synchronization.
Makes dynamic sites update automatically.
2. A new synchronous programming architecture.
Like React, but across the whole stack. No more callbacks. Separates code from state.
3. A backwards-compatible library you can include in your existing website.
Include in nodejs or client side to get Statebus features in any web app.
4. A cutting-edge synchronization algorithm.
(Currently in research)
Building a real-time collaborative application is usually a big ol' pain in the butt. Statebus makes it really easy to do things that have historically been time consuming and challenging to build. Why expend brain power on the boring, tedious stuff, when someone else can do it for you? Your brain will thank you.
Statebus improves HTTP and cleans up the whole programming stack, eliminating the need for complex web frameworks. These frameworks form a patchwork of layers and hacks that have been built on top of HTTP to emulate synchronization. Without them you'll use way less code. And programming will become way more fun. Everything you build will become automatically shareable and remixable, because the insides of your application will be built on an open protocol: it's like a web for the inside of your app!
1. Simplify programming.
2. Realtime and synchronous by default.
3. Share your code and state.
You can see Statebus synchronization in action by typing into the text boxes below. Open a second browser window to watch them synchronize between each client. This demo is built using only a few lines of code. Statebus provides collaboration via synchronization right out of the box!
Using the built in CoffeeScript templating system, the above demo is accomplished with just a few lines of code:
TEXTAREA
value: state['/demo']
onChange: (event) =>
state['/demo'] = event.target.value