Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我做:
node server.js
然后我的终端(osx)开始监听来自节点应用程序的错误和日志等消息。
如果您使用 bash shell(类 Unix 操作系统如 OS X 上的典型默认值),您可以像这样启动它:
node server.js 2>&1 >/dev/null
这将 STDERR 和 STDOUT 指向/dev/null.
/dev/null
如果您还想将进程置于后台以便您可以在 shell 中执行其他操作,请&在末尾添加:
&
node server.js 2>&1 >/dev/null &
只需确保您知道如何将其带回前台(fg命令)和/或知道如何在您不再希望它运行时将其杀死。
fg