Write results into a file using CasperJS

narek picture narek · Oct 10, 2012 · Viewed 35k times · Source

How do I create a file in the file system and place the contents of this.getPageContent() inside it?

Answer

Henry picture Henry · Oct 11, 2012
var fs = require('fs');
fs.write(myfile, myData, 'w');

for saving daily scrapes I do:

var currentTime = new Date();
var month = currentTime.getMonth() + 1;
var day = currentTime.getDate();
var year = currentTime.getFullYear();
var myfile = "data-"+year + "-" + month + "-" + day+".html";