skip to Main Content

I am trying to run a node process on an AWS Ubuntu server and I keep getting this error.

[PM2][ERROR] Script not found: /home/user/app-name/“npm

Here is the command I am running
pm2 start “npm run start” --name app-name

I have tried to use yarn as well and I am getting similar error.

2

Answers


  1. It should be " and not .

    And the morale of the story is: Don’t abuse a word processor as code editor! This is what happens when you type code into Microsoft Word or similar applications. They are meant for writing, not for coding.

    Login or Signup to reply.
  2. I noticed the double quotes you used in the command has been formatted, you must have copied and pasted the command into an application like slack, I ran into similar issue a while ago.

    Do this:
    Use actual double quotes "

    Run this:
    pm2 start "npm run start" --name app-name

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search