Thanks to visit codestin.com
Credit goes to nitric.io

Infrastructure that ships

However you build it, we help you run it. Deploy any application instantly or build backends with infrastructure from code.

Alpha

Deploy any application in seconds. Visual infrastructure, real-time observability, and security built in.

  • Sub-10-second deployments
  • Visual infrastructure canvas
  • Any framework: Django, Node, Laravel, and more
Open Source

Build backends with infrastructure from code. Define resources in your application code and deploy to any cloud.

  • Infrastructure from code
  • JavaScript, Python, Go, Dart, and more
  • Deploy to AWS, GCP, or Azure
import { api, bucket } from "@nitric/sdk";
const main = api("main");
const notes = bucket("notes").allow("read", "write");
main.get("/notes/:title", async ({req, res}) => {
const { title } = req.params;
res.body = await notes.file(title).read();
});
main.post("/notes/:title", async ({req, res}) => {
const { title } = req.params;
await notes.file(title).write(req.text());
});