Skip to content

steren/cloud-run-node-18

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node.js 18 on Google Cloud Run

Node.js 18 brings support for many cool features, read the official blog post.

Cloud Run allows you to run your Node.js 18 app in a fully managed environment.

Deploy to Cloud Run with a single click

Run on Google Cloud

Deploy to Cloud Run using the gcloud command line

Run gcloud run deploy in the root folder.

Running locally

  • Build with docker build . -t node18
  • Start with docker run -p 8080:8080 node18
  • Open in your browser at http://localhost:8080

This is not an official Google product.