DEV Community

Cover image for Build, deploy and host your Node.js-express application for Free with Utopiops
Sam
Sam

Posted on • Originally published at e2e.utopiops.com

Build, deploy and host your Node.js-express application for Free with Utopiops

As a software developer or a software development team, the most important thing for you is building quality software, shipping it and getting feedback from your customers.

Utopiops (utopiops.com) is a new player in town that aims to solve the problem uniquely by giving you a complete ecosystem that supports you entire platform from build, deployment and hosting your applications to monitoring the platform, incident reports and integrations with issue tracking systems.

Utopiops also supports Fully-managed and Managed applications. The Fully-managed applications are hosted on Utopiops cloud platform, while Managed applications are hosted on your own cloud accounts.

In his post I show you how to host your applications using Fully-managed applications on Utopiops for free.

To do so, I have implemented a simple node application with express framework along with a typical Dockerfile.

This is how server.js looks like:

'use strict';

const express = require('express');
const app = express();
const port = process.env.PORT || 3000;

app.get('/', (req, res) => {
  res.send('Hello Utopiops!');
});

app.listen(port, () => {
  console.log(`Server is listening on port ${port}`);
});
Enter fullscreen mode Exit fullscreen mode

And this is my Dockerfile:

FROM node:16

WORKDIR /usr/src/app

COPY package*.json ./

RUN npm ci --only=production

COPY . .

EXPOSE 3000

CMD [ "node", "server.js" ]
Enter fullscreen mode Exit fullscreen mode

I also always have .dockerignore file in my repositories so I avoid bloating my docker images with unnecessary or unwanted files.

If you're wondering what it does, it just acts similar to gitignore and simply tell you Dockerfile to ignore those files/directories.

node_modules
README.md
Enter fullscreen mode Exit fullscreen mode

You can find all these files in the repository here.

Before we begin the deployment you need to create an account on Utopiops if you already haven't done that before, by registering and verifying your email.

Now we create a dockerized application

Screen Shot 2022-01-24 at 12.56.53 pm.png

Then we choose the repository we have stored our code:

Screen Shot 2022-01-24 at 1.00.08 pm.png

I'm using Github for this example, but you can also use Gitlab and Bitbucket too.

Finally just git your application a name, set the git branch, the port your application is listening on, and an endpoint that can be used as health check. Remember that health-check path is just any endpoint that returns a 2xx response to an unauthorized HTTP GET request.
You can also set the environment variables if you like.

Screen Shot 2022-01-24 at 1.01.33 pm.png

Right away the built-in CICD on Utopiops is set up and starts building and deploying your application.

Screen Shot 2022-01-24 at 1.04.24 pm.png

You can see the build logs live as they happen:

Screen Shot 2022-01-24 at 1.05.37 pm.png

And in a just few seconds your application is available (for this example it took 3 seconds to be precise)

Screen Shot 2022-01-24 at 1.06.12 pm.png

Notice that by default HTTPS is provided for you application, just the certificate takes a few minutes to be effective, but guess what! We're working on it to reduce that to few seconds as well.

Screen Shot 2022-01-24 at 1.07.14 pm.png

Worth mentioning, any time you make a change to your target branch, the new version of your application is built and deployed right away.


Final note

We're a very young startup with huge goals in our mind. You can be part of the first users who get to know about our features and our journey.

Please join our family by joining our discord channel, following us on Twitter, and using our service. We have a generous hobby plan!

Please leave a comment if you have any questions or even want to see a private demo!

Top comments (0)