Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 days 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 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-08T21:28:26.000Z (about 1 year ago)
- Last Synced: 2023-10-08T22:20:49.777Z (about 1 year ago)
- Topics: gcp, hosting, nodejs, server
- Language: JavaScript
- Homepage: https://learning-chatbot-393109.lm.r.appspot.com/
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- 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)