TypeScript on ubuntu 24.04

Generated on 15 Jun 2026 from the TypeScript on ubuntu 24.04 catalog page

TypeScript on Ubuntu 24.04 is a pre-configured development environment for building, testing, and deploying modern TypeScript and Node.js applications. This image includes Node.js, npm, TypeScript, PM2, Nginx, and Git, allowing developers to quickly start developing and deploying applications without manual installation or configuration. Use PM2 for process management and Nginx as a reverse proxy for production-ready deployments on DigitalOcean.

Software Included

This Marketplace listing does not include a detailed software list.

Creating an App using the Control Panel

Click the Deploy to DigitalOcean button to create a Droplet based on this 1-Click App. If you aren’t logged in, this link will prompt you to log in with your DigitalOcean account.

Deploy to DO

Creating an App using the API

In addition to creating a Droplet from the TypeScript on ubuntu 24.04 1-Click App using the control panel, you can also use the DigitalOcean API. As an example, to create a 4GB TypeScript on ubuntu 24.04 Droplet in the SFO2 region, you can use the following curl command. You need to either save your API access token to an environment variable or substitute it in the command below.

curl -X POST -H 'Content-Type: application/json' \
         -H 'Authorization: Bearer '$TOKEN'' -d \
        '{"name":"choose_a_name","region":"sfo2","size":"s-2vcpu-4gb","image":"apps4rent-typescriptonubun"}' \
        "https://api.digitalocean.com/v2/droplets"

Getting Started After Deploying TypeScript on ubuntu 24.04

Getting Started After Deploying TypeScript on Ubuntu 24.04

Once the TypeScript on Ubuntu 24.04 One-Click Droplet is created, connect to the server using SSH:

ssh root@your_droplet_public_ipv4

Verify the installed software:

node --version
npm --version
tsc --version
pm2 --version
nginx -v
git --version

Useful PM2 commands:

pm2 list
pm2 logs
pm2 restart <application-name>
pm2 stop <application-name>

Useful Nginx commands:

sudo systemctl status nginx
sudo systemctl restart nginx

After connecting to the Droplet, you can deploy your TypeScript applications, install project dependencies using npm, manage application processes with PM2, and configure Nginx as a reverse proxy for production deployments. Your TypeScript development environment is ready to build, run, and manage modern Node.js and TypeScript applications on DigitalOcean.

We can't find any results for your search.

Try using different keywords or simplifying your search terms.