Skip to main content
Old winston URL says use this new URL. So we'll do that.
Source Link
ruffin
  • 17.8k
  • 11
  • 99
  • 155

If you are looking for something in production winstonwinston is probably the best choice.

If you just want to do dev stuff quickly, output directly to a file (I think this works only for *nix systems):

nohup node simple-server.js > output.log & 

If you are looking for something in production winston is probably the best choice.

If you just want to do dev stuff quickly, output directly to a file (I think this works only for *nix systems):

nohup node simple-server.js > output.log & 

If you are looking for something in production winston is probably the best choice.

If you just want to do dev stuff quickly, output directly to a file (I think this works only for *nix systems):

nohup node simple-server.js > output.log & 
Source Link
alessioalex
  • 63.8k
  • 16
  • 158
  • 123

If you are looking for something in production winston is probably the best choice.

If you just want to do dev stuff quickly, output directly to a file (I think this works only for *nix systems):

nohup node simple-server.js > output.log &