如何在`node bin / www`时禁用stdout / stderr输出?

时间:2016-07-13 05:55:47

标签: node.js npm

npm startndoe bin/www时,它会将错误发送到stderr并将GET / **输出到stdout,如何禁用日志记录?

1 个答案:

答案 0 :(得分:0)

如果您使用的是bash-shell,则可以将所有输出传递给/dev/null

node bin/www > /dev/null 2>&1