标签: node.js npm
当npm start或ndoe bin/www时,它会将错误发送到stderr并将GET / **输出到stdout,如何禁用日志记录?
npm start
ndoe bin/www
GET / **
答案 0 :(得分:0)
如果您使用的是bash-shell,则可以将所有输出传递给/dev/null:
/dev/null
node bin/www > /dev/null 2>&1