If you are already familiar with the Cloud Platform user interface, getting started with a Node.js application is similar to the other applications you have already created in Cloud Platform.
For your reference, here is how Node.js applications and environments are managed, and how you develop your code in them, which may be slightly different than your previously created applications and environments.
Managing applications
Many of the basic application management functions are the same for Cloud Platform-hosted Drupal applications. These functions include:
The Cloud Platform implementation of Node.js uses separate environments to help you maintain a clear and orderly workflow as you develop, test, and publish your applications. An application is deployed on each of its environments, but each environment may be in a different state—possibly with a build artifact deployed. Each environment has a URL at which its application can be accessed, but only the production environment’s URL is designed to be visible to the application’s users (website visitors).
Development environments: Shared between customers
Production environments: Dedicated to a single customer
Determining Node.js version on an environment
The Overview page for an environment displays the Node.js version installed on an environment. To check the version installed on an environment, complete the following steps:
The Cloud Platform uses the conventional npmstart command to start your Node.js application. Ensure that you have a snippet similar to the following in your application’s package.json file:
"scripts": {
"start": "node index.js"
}
Update your Node.js application within the error-handling code so that the code can capture error information and display logs and error messages in log streaming. Node.js applications that capture logs through console.log() and error messages through console.error() can provide effective monitoring and troubleshooting.
Node.js applications on Cloud Platform have a docroot directory. This directory isn’t used by Node.js applications, and can be safely added to your .gitignore file.
Creating a Pipelines artifact for a Node.js application
The following is an example script for building a Pipelines artifact with your Node.js application:
# For more acquia-pipelines.yaml pipelines examples, see
# https://docs.acquia.com/pipelines/yaml/examples/
version: 1.2.0
variables:
global:
# All of these settings are only needed if you want to use the custom deployment script.
# Use the name of the environment where the automatic deployment should happen.
# The deployment script will deploy all the new commits to this given environment.
TARGET_ENV_NAME: 'stage'
ARTIFACT_NAME: '${PIPELINE_VCS_PATH}@${PIPELINE_GIT_HEAD_REF}'
PIPELINE_JOB_URL: 'https://cloud.acquia.com/app/develop/applications/${PIPELINE_APPLICATION_ID}/pipelines/jobs/${PIPELINE_JOB_ID}'
PIPELINE_ARTIFACT_START_LOG: '/tmp/pipelines-artifact-start-${PIPELINE_JOB_ID}.log'
# Put your Cloud API credentials here.
CLOUD_API_KEY:
secure:
CLOUD_API_SECRET:
secure:
events:
build:
steps:
- build:
script:
- nvm use <node_version>
# <node_version> must be the version of node that you want to target. For example, to target version 22: nvm use 22.
- npm install --production
# The next line is only needed when the built code is not part of the commits, otherwise it can be removed.
- npm run build
# Here you can include all the needed scripts for the build to be production ready. Only needed if the built code is not part of the commit.
- upload-artifact:
script:
- pipelines-artifact start
- pipelines-artifact upload $SOURCE_DIR
fail-on-build:
steps:
- fail:
script:
- pipelines-artifact fail
post-deploy:
steps:
- deploy:
script:
- 'chmod +x ./deploy-artifact.sh'
- ./deploy-artifact.sh
- 'echo Artifact $ARTIFACT_NAME is deployed to $TARGET_ENV_NAME environment'
- 'echo Check task log for more details at $PIPELINE_JOB_URL'
You must replace __dirname with the directory in which you want to install Chrome. Puppeteer uses the specified directory to install and use the Chrome package. Therefore, you do not need the globally installed Chrome package.
Getting started with Node.js applications and environments
If you are already familiar with the Cloud Platform user interface, getting started with a Node.js application is similar to the other applications you have already created in Cloud Platform.
For your reference, here is how Node.js applications and environments are managed, and how you develop your code in them, which may be slightly different than your previously created applications and environments.
Managing applications
Many of the basic application management functions are the same for Cloud Platform-hosted Drupal applications. These functions include:
The Cloud Platform implementation of Node.js uses separate environments to help you maintain a clear and orderly workflow as you develop, test, and publish your applications. An application is deployed on each of its environments, but each environment may be in a different state—possibly with a build artifact deployed. Each environment has a URL at which its application can be accessed, but only the production environment’s URL is designed to be visible to the application’s users (website visitors).
Development environments: Shared between customers
Production environments: Dedicated to a single customer
Determining Node.js version on an environment
The Overview page for an environment displays the Node.js version installed on an environment. To check the version installed on an environment, complete the following steps:
The Cloud Platform uses the conventional npmstart command to start your Node.js application. Ensure that you have a snippet similar to the following in your application’s package.json file:
"scripts": {
"start": "node index.js"
}
Update your Node.js application within the error-handling code so that the code can capture error information and display logs and error messages in log streaming. Node.js applications that capture logs through console.log() and error messages through console.error() can provide effective monitoring and troubleshooting.
Node.js applications on Cloud Platform have a docroot directory. This directory isn’t used by Node.js applications, and can be safely added to your .gitignore file.
Creating a Pipelines artifact for a Node.js application
The following is an example script for building a Pipelines artifact with your Node.js application:
# For more acquia-pipelines.yaml pipelines examples, see
# https://docs.acquia.com/pipelines/yaml/examples/
version: 1.2.0
variables:
global:
# All of these settings are only needed if you want to use the custom deployment script.
# Use the name of the environment where the automatic deployment should happen.
# The deployment script will deploy all the new commits to this given environment.
TARGET_ENV_NAME: 'stage'
ARTIFACT_NAME: '${PIPELINE_VCS_PATH}@${PIPELINE_GIT_HEAD_REF}'
PIPELINE_JOB_URL: 'https://cloud.acquia.com/app/develop/applications/${PIPELINE_APPLICATION_ID}/pipelines/jobs/${PIPELINE_JOB_ID}'
PIPELINE_ARTIFACT_START_LOG: '/tmp/pipelines-artifact-start-${PIPELINE_JOB_ID}.log'
# Put your Cloud API credentials here.
CLOUD_API_KEY:
secure:
CLOUD_API_SECRET:
secure:
events:
build:
steps:
- build:
script:
- nvm use <node_version>
# <node_version> must be the version of node that you want to target. For example, to target version 22: nvm use 22.
- npm install --production
# The next line is only needed when the built code is not part of the commits, otherwise it can be removed.
- npm run build
# Here you can include all the needed scripts for the build to be production ready. Only needed if the built code is not part of the commit.
- upload-artifact:
script:
- pipelines-artifact start
- pipelines-artifact upload $SOURCE_DIR
fail-on-build:
steps:
- fail:
script:
- pipelines-artifact fail
post-deploy:
steps:
- deploy:
script:
- 'chmod +x ./deploy-artifact.sh'
- ./deploy-artifact.sh
- 'echo Artifact $ARTIFACT_NAME is deployed to $TARGET_ENV_NAME environment'
- 'echo Check task log for more details at $PIPELINE_JOB_URL'
You must replace __dirname with the directory in which you want to install Chrome. Puppeteer uses the specified directory to install and use the Chrome package. Therefore, you do not need the globally installed Chrome package.