lagon
lagon copied to clipboard
Deploy Serverless Functions at the Edge. Current status: Alpha
Right now, the playground in the dashboard supports TypeScript type definitions but will error if we try to deploy TS code because types aren't stripped. We should probably use ESBuild...
We should add support for the WebSocket API. MDN docs: https://developer.mozilla.org/en-US/docs/Web/API/WebSocket Cloudflare Workers docs: https://developers.cloudflare.com/workers/learning/using-websockets/
Currently, all Deployments are deployed globally in all regions. One might want to keep the low cold starts, instant deployments scoped to a single region instead of being deployed globally....
We should add a spending limit to Lagon Cloud, that prevents unexpected and unwanted bills. This limit can be added per function and/or per organization and corresponds to a certain...
We should add support for the Cache API (from Service Workers). - MDN docs: https://developer.mozilla.org/en-US/docs/Web/API/Cache - Cloudflare Workers docs: https://developers.cloudflare.com/workers/runtime-apis/cache/
We should provide advanced analytics for paying organizations, in a new tab on the Function page. Currently, we provide the following statistics: - Requests (includes both isolate and assets requests)...
The project is getting complex, with many pieces working together. We should write an "Architecture" / "How it works" documentation in https://docs.lagon.app, covering: - What does each package / crate...
We have an `examples` directory but we aren't testing it to see if it still works. We should add a new CI test that runs every example using the `lagon-dev`...
We should support SolidStart SSR and SSR streaming https://start.solidjs.com/getting-started/what-is-solidstart
Right now, Environment variables are always the same, whether we use a production or preview Function. We should be able to define Environment variables for a specific environment.