https://github.com/shehza-d/node-server-hosting
Different ways of Hosting NodeJS Server with code walkthrough
https://github.com/shehza-d/node-server-hosting
gcp hosting nodejs server
Last synced: 10 months ago
JSON representation
Different ways of Hosting NodeJS Server with code walkthrough
- Host: GitHub
- URL: https://github.com/shehza-d/node-server-hosting
- Owner: shehza-d
- Created: 2023-07-10T05:58:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-08T21:28:26.000Z (over 2 years ago)
- Last Synced: 2025-02-14T16:33:22.306Z (12 months ago)
- Topics: gcp, hosting, nodejs, server
- Language: JavaScript
- Homepage: https://learning-chatbot-393109.lm.r.appspot.com/
- Size: 21.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hosting Node servers on different platforms
## Hosting Platforms
| | Platforms | Hosting Link |
| --- | ---------------------------------------------- | ------------------------------------------------- |
| 1. | Google App Engine | https://myportfoliochatbot-hmsa.et.r.appspot.com/ |
| 1. | [Vercel Hosting](https://vercel.com/dashboard) | https://node-server-hosting-on.vercel.app/ |
| 1. | AWS elasitc bean stock | --- |
| 1. | Cyclic | https://easy-teal-sea-urchin-gown.cyclic.app/ |
| 1. | Railway | |
| 1. | Render | |
## Google App Engine
#### Setup
```bash
gcloud init
```
#### Deploying to App Engine
```bash
gcloud app deploy
```
## Writing Your Web Service Sample for Node.js in the App Engine Standard Environment
This is the sample application for the
[Writing Your Web Service with Node.js](https://cloud.google.com/appengine/docs/standard/nodejs/building-app/writing-web-service)
tutorial found in the [Google App Engine Node.js standard environment](https://cloud.google.com/appengine/docs/standard/nodejs/runtime)
documentation.
[Nodejs samples on GCP](https://github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/main/appengine)