Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 719 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 719 Bytes

Data-Logger

How to capture all your logs in a file instead of in your console.

If you have needed a way to write your console logs to a file instead of to the console, or if you have ever wanted to capture an API response in a file, than this repository has everything you need.

The best part is you don't even need to install any dependencies. Everything used to accomplish what this code does is already built into Node.js.

In all reality the only thing you need from this code base to make it work is the logger.js file. Everything else is just there to show how it can be used.

All this does is use the FS and Console modules to save your console.log's to a file. And there are a few ways of doing this.