Run a Deno app in production on Cloud 🚀

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • deno

    A modern runtime for JavaScript and TypeScript.

  • // deno-app/index.ts import { serve } from "https://deno.land/[email protected]/http/server.ts"; const port = 8080; const handler = (request: Request): Response => { const url = new URL(request.url); const name = url.pathname.slice(1) || "World"; const version = Deno.version.deno; const body = `Hello ${name} from Deno v${version}`; return new Response(body, { status: 200 }); }; console.log(`HTTP server listening on port ${port}`); await serve(handler, { port });

  • TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • Basic knowledge of TypeScript.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • rust

    Empowering everyone to build reliable and efficient software.

  • Deno is a modern, simple and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust. It is an open source project created by Ryan Dahl, creator of Node.js.

  • v8.dev

    The source code of v8.dev, the official website of the V8 project.

  • Deno is a modern, simple and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust. It is an open source project created by Ryan Dahl, creator of Node.js.

  • node

    Node.js JavaScript runtime ✨🐢🚀✨

  • Deno is a modern, simple and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust. It is an open source project created by Ryan Dahl, creator of Node.js.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts