After I run pm2 start npm -- start,then get errored. error info is C:\PROGRAM FILES\NODEJS\NPM.CMD:1 (function (exports, require, module, __filename, __dirname) { :: Created by npm, please don't edit manually. ^ SyntaxError: Unexpected token : at createScript (vm.js:80:10) at...
What's going wrong? When trying to run a Next.js based site via PM2 through an npm script, the error above is thrown. See output below: PS C:\Users\Me\Desktop\MyApp> pm2 start npm --name "app" -- start [PM2] Starting C:\PROGRAM FILES\NOD...
现在项目里面下载一个node-cmd npminstallnode-cmd --save 项目根目录下面创建一个startscript.js文件,然后里面内容:var cmd=require('node-cmd'); cmd.run('npm start')。 最后执行pm2 start startscript.js就能成功看到status为online了。这个问题出现的原因应该pm2命令中的npm启动项目时因为无法使用cmd而导致失败。
pm2 start<python文件路径>.py --interpreter python pm2 start<sh文件路径>.sh --interpreter bash pm2 start ./node_modules/<某模块名称>/<模块主文件路径>.js pm2 start<某种方式> -- --param_name param_value pm2 start npm--start pm2 start npm-- run pm2 start yarn--start pm2 start yarn-- ...
cd /path/to/my/app pm2 start env.js --watch --ignore-watch="node_modules" 使用--ignore watch=“node_module” 忽略node_modules文件夹中的任何更改。 在pm2中启动 package.json 脚本 pm2 start npm -- start # OR pm2 start npm --name "myAPP" -- start #OR pm2 start npm --name "{app_...
npm install -g pm2 1. 入门教程 以express应用来举例。一般我们都是通过npm start启动应用,其实就是调用node ./bin/www。那么,换成pm2就是: pm2 start ./bin/www --watch 1. 注意,这里用了--watch参数,意味着当你的express应用代码发生变化时,pm2会帮你重启服务。
服务器使用pm2运行npm run start 也可用于运行ts-node 命令:pm2 start npm -- run start 语法:pm2 start npm --watch --name <taskname> -- run
Production process manager for Node.JS applications with a built-in load balancer.. Latest version: 5.4.3, last published: a month ago. Start using pm2 in your project by running `npm i pm2`. There are 1709 other projects in the npm registry using pm2.
pm2 start npm--watch--name nickname--run sit// 启动 npm run siteg:pm2 start npm--watch--name h5toolsit--run sit 其中--watch监听代码变化,--name 重命令任务名称,--run后面跟脚本名字 为什么需要使用PM2 因为node.js 是单进程,进程被杀死后整个服务就跪了,所以需要进程管理工具,但是pm2 远远不止这...
pm2 start npm -- start pm2 start npm -- run pm2 start yarn -- start pm2 start yarn -- run pm2 start <某种方式> --watch 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 相比较官方推荐的运行某某js的方式,最容易的配置方式,其实是: pm2 start npm -- run ...