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.
Run gcloud run deploy
in the root folder.
- 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.