DEV Community

Cover image for How to deploy Node.js application to Google Cloud (App Engine)?
collegewap
collegewap

Posted on • Originally published at codingdeft.com

How to deploy Node.js application to Google Cloud (App Engine)?

In this article, we will see how to deploy a Node.js application to Google App Engine.

Creating a Node.js application

Create a directory called nodejs-gcp-deploy and run the command npm init -y inside it.
This will create a default npm project.

Now install the following npm package inside the nodejs-gcp-deploy folder:

npm i express
Enter fullscreen mode Exit fullscreen mode

Express helps in creating routes in Node.js applications.

Now create a file called index.js with the following code.

const express = require("express")
const app = express()

app.get("/", (req, res) => {
  res.send("Hello World!")
})

app.get("/ping", (req, res) => {
  res.send({ success: true })
})

app.listen(process.env.PORT || 3000, () => {
  console.log("Server is listening on port 3000")
})
Enter fullscreen mode Exit fullscreen mode

Creating the app.yaml file

You need to specify what kind of project needs to be deployed using app.yaml file.

Create a file called app.yaml in the root directory of the project with the following code:

runtime: nodejs16
Enter fullscreen mode Exit fullscreen mode

Creating a Project in Google Cloud

Navigate to the Google cloud console and create a new project:

console dashboard dropdown

Now click on NEW PROJECT

create new project 1

In the next screen provide a project name and click CREATE

create new project 2

It will take a few minutes to create the project and you will receive a notification once finished.

created notification

Now click on SELECT PROJECT. This will navigate you to the newly created project dashboard.

Now Search for App Engine and select it.

create app engine 1

In the next screen click on CREATE APPLICATION

create app engine 2

Now choose the region where you would want your application to be hosted (always chose a region where your majority of users are from).

choose region

Installing Google Cloud CLI

Install the google cloud CLI on your machine by running the following command in Powershell (Windows):

(New-Object Net.WebClient).DownloadFile("https://dl.google.com/dl/cloudsdk/channels/rapid/GoogleCloudSDKInstaller.exe", "$env:Temp\GoogleCloudSDKInstaller.exe")

& $env:Temp\GoogleCloudSDKInstaller.exe
Enter fullscreen mode Exit fullscreen mode

If you are using any other operating system, you can find the instructions to install it here.

After the SDK is installed, open the command prompt in administration mode, navigate to the Node.js project directory,
and run the following command:

gcloud init
Enter fullscreen mode Exit fullscreen mode

If you are running the above command for the first time, it will ask for logging in.
Once logged in choose the account where the project is created and then the project.

gcloud init logs

Now deploy the changes using the following command:

gcloud app deploy
Enter fullscreen mode Exit fullscreen mode

cloud build error

If you face the above error, click on the link on the error and enable Cloud Build
API (you may have to enable billing).

enable cloud build api

Re-run the command gcloud app deploy again and it should get deployed and print the URL of the application.

Top comments (0)