Advanced WebSocket server course for everyone! Build a WebSocket server from scratch using JavaScript. No libraries.
Create a web application with a backend database
Learn how to the send and receive messages between a browser and the server over a WebSocket
Get started writing web apps in Dart.
Create a web app using Python and Django
A platform for beginners and experts alike. See why more than 4.69 million apps have been built and launched on Bubble.
Build a real example web application from scratch with PHP 8 and MySQL
How to prepare for and release a web app.
Choosing build modes and renderers for a Flutter web app.
JavaScript · TypeScript ; import { DurableObject } from "cloudflare:workers"; // Worker · export default { · async fetch(request, env, ctx) { · if (request.url.endsWith("/websocket")) { · // Expect to receive a WebSocket Upgrade request. // If there is one, accept the request and return a WebSocket Response. const upgradeHeader = request.headers.get('Upgrade'); if (!upgradeHeader || upgradeHeader !== 'websocket') { · return new Response('Durable Object expected Upgrade: websocket', {...