Question

Instructions on how to download Nestjs App on Ubuntu

Hi everybody. I need help with an issue. I run npm run start:dev then it’s hanging In the local macbook is working fine. [12:10:09 PM] Starting compilation in watch mode…

[12:10:19 PM] Found 0 errors. Watching for file changes.

Thanks so much !


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

KFSys
Site Moderator
Site Moderator badge
April 10, 2023

Hey @e27311886f59426b9d485b9a38,

NestJS is built on top of Node.js, so you’ll need to have Node.js installed on your Ubuntu system before you can download a NestJS app.

  1. sudo apt-get update
  2. sudo apt-get install nodejs

You’ll need to install npm as well.

  1. sudo apt-get install npm

Once you have Node.js and npm installed, you can clone the NestJS app from its repository. Navigate to the directory where you want to clone the app, and use the following command to clone the app

  1. git clone https://github.com/[username]/[app-name].git

Than go inside and run

  1. npm install
  1. npm run start
KFSys
Site Moderator
Site Moderator badge
April 10, 2023

Hey @e27311886f59426b9d485b9a38,

NestJS is built on top of Node.js, so you’ll need to have Node.js installed on your Ubuntu system before you can download a NestJS app.

  1. sudo apt-get update
  2. sudo apt-get install nodejs

You’ll need to install npm as well.

  1. sudo apt-get install npm

Once you have Node.js and npm installed, you can clone the NestJS app from its repository. Navigate to the directory where you want to clone the app, and use the following command to clone the app

  1. git clone https://github.com/[username]/[app-name].git

Than go inside and run

  1. npm install
  1. npm run start

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

card icon
Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Sign up
card icon
Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We’d like to help.

Learn more
card icon
Become a contributor

You get paid; we donate to tech nonprofits.

Learn more
Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow – whether you’re running one virtual machine or ten thousand.

Learn more ->
DigitalOcean Cloud Control Panel