How to set up Continuous Delivery for Node.js

How to set up Continuous Delivery for Node.js

The 2010s elevated HTML, CSS and JavaScript to the status of the Holy Trinity of modern web development and gave us visually rich, interactive, and mobile-friendly websites.

Hint
However, it also means websites need to be built and tested before it can be released. A textbook example of a properly configured delivery process can look like this:
  1. Fetch dependencies
  2. Run Gulp/Grunt tasks, bundle assets, compile CSS, etc.
  3. Run unit tests
  4. Deploy to Stage
  5. Run integration tests
  6. Deploy to Production

Buddy lets you travel back to simple times and streamline the whole process to a single click (or push to repository) by introducing Continuous Delivery to your workflow.

Automating Node.js delivery with Buddy

Let's create a simple pipeline that will build your application and deploy it to the server:

  1. Sign up to Buddy and select the repository with your JS project
  2. Add a new pipeline and set the Trigger Mode to On every push
  3. Add the 'Node.js' action and define your tasks
  4. Add a transfer action to your type of server (eg. SFTP)
  5. (Optional) You can also add a notification to keep your team updated
  6. Make a push to the selected branch

Image loading...Pipeline example

Hint
Buddy uses isolated Docker containers to perform your builds. The output of the operation (eg. bundled files) is then stored in the Filesystem, from which it is deployed to the desired place.
Tip
You can switch to YAML if you prefer configuration as code over GUI.

Continuous Delivery vs Continuous Deployment

Continuous Deployment is a software engineering approach in which every change to code is rigorously tested before getting deployed to the Production server. The whole process is fully automated - from push to the repository, to deployment to server.

Image loading...Continuous deployment pipeline example

In Continuous Delivery, the product is always in a deployment-ready state, but the deployment to the Production server needs to be performed manually:

Image loading...Continuous delivery pipeline example

Tip
Which process to choose depends on the company needs: in some cases, a feature must wait until it can be released live. However, if your company is not constrained by such regulations, Continuous Deployment should be the process to pursue.

Configuring Continuous Delivery pipeline

Continuous Delivery requires manual confirmation before deploying the application to Live. In Buddy you can achieve that by adding the 'Wait for approval' action to your workflow:

Image loading...'Wait for approval' action

This way every time the pipeline is executed, all changes will be automatically tested, but no deployment will be made until the time is right.

Image loading...Continuous delivery pipeline

Expanding the pipeline

The pipeline can be further expanded with additional actions. You can, for example:

  • Dockerize your application before the deployment
  • send a conditional notification to Slack in case the tests have failed
  • restart servers with SSH scripts
  • send HTTP POST to activate maintenance mode on the Production server or switch to atomic deployments for zero downtime
  • monitor the impact of deployments on your application
Jarek Dylewski

Jarek Dylewski

Customer Support

A journalist and an SEO specialist trying to find himself in the unforgiving world of coders. Gamer, a non-fiction literature fan and obsessive carnivore. Jarek uses his talents to convert the programming lingo into a cohesive and approachable narration.

Jun 29th 2017
Share