Skip to content

Instantly share code, notes, and snippets.

@ryotah
ryotah / README.md
Last active August 18, 2020 02:53
Node.js Read/Write
// READ
// node read.js < 1596859367268.json
const data = require("fs").readFileSync("/dev/stdin", "utf8");
console.log(data);
// WRITE
// node foo.js &gt; `date '+%Y%m%d%H%M%S'`.json