Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steren/cloud-run-node-18
Latest Node.js on Cloud Run
https://github.com/steren/cloud-run-node-18
cloud-run expressjs google-cloud-run nodejs
Last synced: 12 days ago
JSON representation
Latest Node.js on Cloud Run
- Host: GitHub
- URL: https://github.com/steren/cloud-run-node-18
- Owner: steren
- License: apache-2.0
- Created: 2019-10-30T01:13:43.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T23:27:05.000Z (over 2 years ago)
- Last Synced: 2024-11-01T11:42:31.901Z (19 days ago)
- Topics: cloud-run, expressjs, google-cloud-run, nodejs
- Language: JavaScript
- Homepage: https://cloud.run
- Size: 22.5 KB
- Stars: 14
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node.js 18 on Google Cloud Run
Node.js 18 brings support for many cool features, read the [official blog post](https://nodejs.org/en/blog/announcements/v18-release-announce/).
[Cloud Run](https://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](https://deploy.cloud.run/button.svg)](https://deploy.cloud.run)
## 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.