Answer the question
In order to leave comments, you need to log in
Write to end of fs file?
I want to write to the end of the file. I do this:
https://jsfiddle.net/h7td34wc/
but it seems to me that opening a file for writing every time is not ok. Is there any way to record without opening?
Answer the question
In order to leave comments, you need to log in
> whether it is possible to write down somehow without opening?
No, but there are methods that will do it for you. For example fs.appendFile(fs.appendFileSync)
but it seems to me that each time opening a file for writing is not ok
var fs = require("fs");
var writeStream = fs.createWriteStream("log.txt"); // создаем поток
writeStream.write("Hello world!"); // пишем
writeStream.end(); // закрываем
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question