All Projects → denofn → Deno Serverless Poc

denofn / Deno Serverless Poc

Licence: mit
PoC Deno image for Google Cloud Run

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Deno Serverless Poc

Firebase Gcp Examples
🔥 Firebase app architectures, languages, tools & some GCP things! React w Next.js, Svelte w Sapper, Cloud Functions, Cloud Run.
Stars: ✭ 470 (+1046.34%)
Mutual labels:  serverless, google-cloud-platform
Functions Samples
Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase
Stars: ✭ 10,576 (+25695.12%)
Mutual labels:  serverless, google-cloud-platform
Medium Article
Repo for articles in my personal blog and Medium
Stars: ✭ 28 (-31.71%)
Mutual labels:  google-cloud-platform
Terraform Gcp Kubernetes Traefik
Little example of how to deploy a gke cluster with terraform and use traefik as ingress controller
Stars: ✭ 39 (-4.88%)
Mutual labels:  google-cloud-platform
Serverless Faas Workbench
FunctionBench
Stars: ✭ 32 (-21.95%)
Mutual labels:  serverless
Serverless Plugin Stackstorm
Plugin for serverless framework to run ready to use actions from StackStorm Exchange as AWS Lambda.
Stars: ✭ 28 (-31.71%)
Mutual labels:  serverless
Shorty.sls
Serverless URL shortener written in Python3 using the serverless framework
Stars: ✭ 35 (-14.63%)
Mutual labels:  serverless
Aws Lambda Dotnet
Libraries, samples and tools to help .NET Core developers develop AWS Lambda functions.
Stars: ✭ 945 (+2204.88%)
Mutual labels:  serverless
Secrets Store Csi Driver Provider Gcp
Google Secret Manager provider for the Secret Store CSI Driver.
Stars: ✭ 40 (-2.44%)
Mutual labels:  google-cloud-platform
Cloud Builders
Builder images and examples commonly used for Google Cloud Build
Stars: ✭ 968 (+2260.98%)
Mutual labels:  google-cloud-platform
Serverless Home Automation
WARNING: This repository is no longer maintained ⚠️ This repository will not be updated. The repository will be kept available in read-only mode.
Stars: ✭ 38 (-7.32%)
Mutual labels:  serverless
Serverless Geoip
Use MaxMind GeoLite2 database with AWS Lambda
Stars: ✭ 33 (-19.51%)
Mutual labels:  serverless
Fusio
Open source API management platform
Stars: ✭ 946 (+2207.32%)
Mutual labels:  serverless
Lamlight
Lamlight is a command line tool to allow easy handling of AWS lambda functions. It allows to put heavy dependencies like numpy and scipy on AWS lambda and updating your lambda function very quickly.
Stars: ✭ 37 (-9.76%)
Mutual labels:  serverless
Graphql Serverless
Sample project to guide the use of GraphQL and Serverless Architecture.
Stars: ✭ 28 (-31.71%)
Mutual labels:  serverless
Lambda Packs
Precompiled packages for AWS Lambda
Stars: ✭ 997 (+2331.71%)
Mutual labels:  serverless
Cloudflare Public Dynamic Ip Update
Updating public dynamic IP address to existing cloudflare DNS record
Stars: ✭ 28 (-31.71%)
Mutual labels:  google-cloud-platform
Vscode Apimanagement
VS Code extension for Azure API Management.
Stars: ✭ 32 (-21.95%)
Mutual labels:  serverless
Cortex
Production infrastructure for machine learning at scale
Stars: ✭ 7,627 (+18502.44%)
Mutual labels:  serverless
Cloud Functions Runtime Config
Wrapper around Google API Client to read Runtime Config variables in Cloud Functions
Stars: ✭ 40 (-2.44%)
Mutual labels:  google-cloud-platform

deno-serverless-poc

This PoC looks at the possibilities of a Serverless runtime for Deno.

  • hayd/deno_docker Alpine Dockerfile
  • basic http server example from the std docs
  • bundles your source for extra fast runtimes, very necessary if you're creating a serverless runtime!

There's a Docker image available over at denoserverless/deno-serverless-poc.

Getting started

Make sure Docker, git, node and yarn are installed

git clone https://github.com/denoserverless/deno-serverless-poc myProject && cd myProject && yarn
# Edit the index.ts, building the Dockerfile will now compile and bundle your source (and keeps an internal cache of all needed dependencies)
docker build -t my-docker-image .
docker run -it --init -p 8080:8080 my-docker-image
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].