无法在pm2的ts-node上运行Typescript node.js应用

时间:2019-03-24 17:17:51

标签: node.js typescript pm2 ts-node

我创建了一个带有打字稿顶部的基本节点应用程序。我正在使用ts-node这样做,并且它与nodemon一起正常工作。但是我现在被卡住了,需要将其移动到服务器上。 PM2始终显示错误。我已经在GitHub和StackOverflow上找到了其他答案。没有任何帮助我。请帮忙。

我尝试用PM2安装打字稿和ts-node。但这对我没有用。我也尝试过直接运行文件,没有用。我现在一无所知,该如何解决。

 "scripts": {
    "start": "nodemon -x ts-node src/server.ts"
  },

使用简单的npm run start命令可以正常运行

madbo@DESKTOP-CS5UFKE MINGW64 /e/shailesh/nodejs/NodeType
$ npm run start

> NodeType@1.0.0 start E:\shailesh\nodejs\NodeType
> nodemon -x ts-node src/server.ts

[nodemon] 1.18.5
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `ts-node src/server.ts`
24 Mar 22:33:23 - listening on port 3000
Mongoose default connection is open to  mongodb://localhost:27017/todo 

到目前为止我一直没有尝试的尝试 *(PM2已全局安装)*

pm2 start ts-node -- --type-check -r tsconfig-paths/register src/server.ts

它给了我这个错误

madbo@DESKTOP-CS5UFKE MINGW64 /e/shailesh/nodejs/NodeType
$ pm2 start ts-node -- --type-check -r tsconfig-paths/register src/server.ts
[PM2][ERROR] script not found : E:\shailesh\nodejs\NodeType\ts-node
script not found : E:\shailesh\nodejs\NodeType\ts-node
┌──────────┬────┬─────────┬──────┬─────┬────────┬─────────┬────────┬─────┬─────┬──────┬──────────┐
│ App name │ id │ version │ mode │ pid │ status │ restart │ uptime │ cpu │ mem │ user │ watching │
└──────────┴────┴─────────┴──────┴─────┴────────┴─────────┴────────┴─────┴─────┴──────┴──────────┘
 Use `pm2 show <id|name>` to get more details about an app

我还使用了以下

pm2 start npm  -- ts-node src/server.ts

得到

$ pm2 start npm  -- ts-node src/server.ts
[PM2] Applying action restartProcessId on app [npm](ids: 0)
[PM2] [npm](0) ✓
[PM2] Process successfully started
┌──────────┬────┬─────────┬──────┬───────┬────────┬─────────┬────────┬─────┬───────────┬───────┬──────────┐
│ App name │ id │ version │ mode │ pid   │ status │ restart │ uptime │ cpu │ mem       │ user  │ watching │
├──────────┼────┼─────────┼──────┼───────┼────────┼─────────┼────────┼─────┼───────────┼───────┼──────────┤
│ npm      │ 0  │ N/A     │ fork │ 11300 │ online │ 15      │ 0s     │ 0%  │ 21.5 MB   │ madbo │ disabled │
└──────────┴────┴─────────┴──────┴───────┴────────┴─────────┴────────┴─────┴───────────┴───────┴──────────┘
 Use `pm2 show <id|name>` to get more details about an app

madbo@DESKTOP-CS5UFKE MINGW64 /e/shailesh/nodejs/NodeType
$ pm2 status
┌──────────┬────┬─────────┬──────┬─────┬─────────┬─────────┬────────┬─────┬────────┬───────┬──────────┐
│ App name │ id │ version │ mode │ pid │ status  │ restart │ uptime │ cpu │ mem    │ user  │ watching │
├──────────┼────┼─────────┼──────┼─────┼─────────┼─────────┼────────┼─────┼────────┼───────┼──────────┤
│ npm      │ 0  │ N/A     │ fork │ 868 │ stopped │ 24      │ 0      │ 0%  │ 0 B    │ madbo │ disabled │
└──────────┴────┴─────────┴──────┴─────┴─────────┴─────────┴────────┴─────┴────────┴───────┴──────────┘
 Use `pm2 show <id|name>` to get more details about an app

请帮助我解决此问题

我希望它在服务器上具有pm2的服务器上工作。如果你们中的任何人都能解决我的问题,我将非常高兴。谢谢

2 个答案:

答案 0 :(得分:1)

这是非常简单的人。

只需将tscpm2的监视结合使用单个&来运行两个命令。

"scripts": {
    "serve": "tsc src/app.ts -w & pm2 start dist/app.js --watch"
},

答案 1 :(得分:0)

步骤1

使用以下文件创建文件run-ts.sh

ts-node -T index.ts

步骤2

运行此命令

pm2 start run-ts.sh

随之,您将运行您的Typescript应用程序?