Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to find a way to write to file when using NodeJS but with no success. Can you help me with this.

Thanks.

share|improve this question

3 Answers

up vote 126 down vote accepted

There's lots of detail in the filesystem API. The most common way (as far as I know) is:

var fs = require('fs');
fs.writeFile("/tmp/test", "Hey there!", function(err) {
    if(err) {
        console.log(err);
    } else {
        console.log("The file was saved!");
    }
}); 
share|improve this answer
16  
@AndersonGreen This is a Node.js program. You cannot run it in a browser. – pvorb Aug 8 '12 at 18:58
I've tested this script using Node, and I tried changing the file path to "/home/", but I got the following error: { [Error: EACCES, open '/home/test.txt'] errno: 3, code: 'EACCES', path: '/home/test.txt' } How can I modify this script so that it will work outside of /tmp? – Anderson Green Sep 10 '12 at 20:37
Also note you can use fs.writeFileSync(...) to accomplish the same thing synchronously. – David Erwin Jan 23 at 18:28

EDITED, 26/12/2012, node v0.8.16

Currently there are 3 ways to write a file:

  1. fs.write(fd, buffer, offset, length, position, [callback])

    You need to wait for the callback to ensure that the buffer is written to disk. It's not buffered.

  2. fs.writeFile(filename, data, [encoding], [callback])

    All the data has to be stored at the same time. You can't perform sequential writes.

  3. fs.createWriteStream(path, [options])

    An improvement of (1) because you don't need to wait any callback but, again, it's not buffered.

    Note: The WriteStream, as the name says, it's a stream. A stream by definition is a buffer with data that moves from an origin to a destination, but a writable stream does not need to be buffered. A stream is buffered when you write n times and at the n+1 time the stream sends the buffer because it's full and needs to be flushed.

    If you look at the code, the WriteStream inherits from a writable Stream object. If you go to the line 134, you'll see what it does when you write a string with the WriteStream, the string is converted to a Buffer, and then in line 155 they call _write() to send the buffer. _write() is not implemented in this file, it's implemented in the fs module. Then, the _write() function calls to fs.write()...

    As you see, they're not filling any buffer when you write strings, so if you do: write("a"), write("b"), write("c") you're doing: fs.write(new Buffer("a")), fs.write(new Buffer("b")), fs.write(new Buffer("c")), 3 calls to the I/O layer and obviously you're using buffers but the data is not buffered. A buffered stream would do: fs.write(new Buffer ("abc")), 1 call to the I/O layer.

In Java there are some classes that provide buffered streams (BufferedOutputStream and BufferedWriter). If you write 3 bytes, these bytes will be stored in the buffer (memory) instead of doing an I/O call just for 3 bytes. When the buffer is full the content is flushed and persisted to the disk. Doing this you win performance.

I'm not discovering anything, just remembering how a disk access should be done.

Then, how can we write buffered data? With a buffered-writer.

With a buffered writer you can accomplish 2 goals:

  1. Write text and binary data.
  2. Concatenate buffers. How can you write 0x00 and then 0x01? The Buffer class only allows you to concatenate strings (buf.write(string, [offset], [length], [encoding]))

It's very easy to use.

Full reference

bw.open ("file")
    .on ("error", function (error){
        console.log (error);
    })
    .write ([0x00, 0x01, 0x02]) //Writes: 0x00, 0x01, 0x02
    .write (new Buffer ([0x03, 0x04]), 1, 1) //Writes: 0x04
    .write (0x0506) //Writes: 0x05, 0x06
    .write ("↑a", 1) //Writes: a (0x61)
    .close ();

The buffered-writer is not a stream!! it does not inherit from a Stream.

Read operations also need a buffer, especially if you're doing a random access. You can use a buffered-reader.

share|improve this answer

You can of course make it a little more advance. Non blocking, writing bits and pieces, not writing the whole file at once.

var fs = require('fs');
var stream = fs.createWriteStream("my_file.txt");
stream.once('open', function(fd) {
  stream.write("My first row\n");
  stream.write("My second row\n");
  stream.end();
});
share|improve this answer
1  
What is the 'fd' variable passed into the callback for stream.once ? – Scott David Tesler Oct 18 '12 at 5:49
1  
@ScottDavidTesler file descriptor so you will be able to close stream after you've done with it. – AlexKey Nov 20 '12 at 11:32
When do I close the stream? Why is this non-blocking? Just curious, I am trying to write to a log file. – ioSamurai Jan 3 at 3:06
You can always do a stream.end() when you've done your stream.writes(). I will add it to the example. – Fredrik Andersson Jan 4 at 23:11
Will this fail if the server goes down before stream.end() is called? In essence, can I use this for error logging to specific file? (Yes, I know you can specify this when you run the node app, but for certain errors I want to store it in a different file than all the other logging). – Cort3z Apr 23 at 11:42
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.