---
title: TypeScript on ubuntu 24.04
description: Spin up TypeScript on Ubuntu 24.04 LTS instantly. A pre-configured development environment with Node.js, npm, TypeScript, PM2, Nginx, and Git for …
product: Marketplace
url: https://docs.digitalocean.com/products/marketplace/catalog/typescript-on-ubuntu-24-04/
last_updated: "2026-06-15"
---

> **For AI agents:** The documentation index is at [https://docs.digitalocean.com/llms.txt](https://docs.digitalocean.com/llms.txt). Markdown versions of pages use the same URL with `index.html.md` in place of the HTML page (for example, append `index.html.md` to the directory path instead of opening the HTML document).

# TypeScript on ubuntu 24.04

Generated on 15 Jun 2026 from [the TypeScript on ubuntu 24.04 catalog page](https://marketplace.digitalocean.com/apps/typescript-on-ubuntu-24-04)

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](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/droplets/new?onboarding_origin=marketplace&appId=232977196&image=apps4rent-typescriptonubun&activation_redirect=%2Fdroplets%2Fnew%3FappId%3D232977196%26image%3Dapps4rent-typescriptonubun)

## 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](https://docs.digitalocean.com/reference/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](https://docs.digitalocean.com/reference/api/create-personal-access-token/index.html.md) to an environment variable or substitute it in the command below.

```shell
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.