Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 714 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 714 Bytes

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.