NodeJS Stream to Files

JS
S
JavaScript

Simple snippet to write logs or similar to text files (plain UTF8 enconding).

1//UTF8 only
2const fs = require('fs');
3const wstream = fs.createWriteStream('log.txt');
4wstream.write('Sample text \n');
5wstream.end();

Created on 1/10/2018