Modified Create an fs.writeableStream that won't error if the directory does not exist.
npm install create-output-stream-node22Node.js: createOutputStream
===========================
Exactly like fs.createWriteStream, but if the directory does not exist, it's created. Extracted from fs-extra
npm i --save create-output-stream
``js
var createOutputStream = require('create-output-stream')
// if /tmp/some does not exist, it is created
var ws = createOutputStream('/tmp/some/file.txt')
ws.write('hello\n')
``
MIT