gpt4 book ai didi

javascript - 启动时运行多个脚本的NodeJS包

转载 作者:行者123 更新时间:2023-11-30 13:44:41 31 4
gpt4 key购买 nike

我正在使用 NodeJS,我想部署我的应用程序。

当应用程序在服务器上时,它会在 package.json 中运行 node ./bin/www(由 express 标准配置),以启动服务器。但是我想在 node ./bin/www 脚本完成 ./api.js 之后运行另一个脚本(这个脚本将永远循环)。

./api.js 位于项目的根文件夹中

这是我尝试过的,但到目前为止没有成功。

  "scripts": {
"start": "node ./bin/www",
"start": "node ./api.js"
}

服务器启动两个脚本,(通过日志检查)。但是我无法访问该网站

日志:

    > x@ start /app
> node ./api.js

State changed from starting to crashed
State changed from crashed to starting
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
Stopping process with SIGKILL

www/bin:

#!/usr/bin/env node

/**
* Module dependencies.
*/

var app = require('../app');
var debug = require('debug')('expressapp:server');
var http = require('http');

/**
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

var server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
*/

server.listen(port);
server.on('error', onError);
server.on('listening', onListening);

/**
* Normalize a port into a number, string, or false.
*/

function normalizePort(val) {
var port = parseInt(val, 10);

if (isNaN(port)) {
// named pipe
return val;
}

if (port >= 0) {
// port number
return port;
}

return false;
}

/**
* Event listener for HTTP server "error" event.
*/

function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}

var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}



/**
* Event listener for HTTP server "listening" event.
*/

function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}

最佳答案

执行此操作的最简单方法是使用 bash && 运算符,它运行一个命令,然后在完成后运行另一个命令:

"scripts": {
"start": "node ./bin/www && node ./api.js"
}

关于javascript - 启动时运行多个脚本的NodeJS包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59537817/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com