Skip to content

Instantly share code, notes, and snippets.

@matsuhisa
Last active September 23, 2015 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matsuhisa/7eccc33cfb10298c3aac to your computer and use it in GitHub Desktop.
Save matsuhisa/7eccc33cfb10298c3aac to your computer and use it in GitHub Desktop.
phantom.js を使ってファイルへの書き込みを行う。node.jsの機能?http://blog.codebook-10000.com/entry/20130730/1375204497 http://phantomjs.org/api/fs/method/write.html
var fs = require('fs');
var path = 'output.txt';
var content = "日本語\t日本語\n2行目です";
fs.write(path, content, 'w');
phantom.exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment