Which flag do I need to use in Nodes fs.createWriteStream
to make it create files with 755 permissions.
You can set permissions with createWriteStream
, using the mode
option:
var fs = require('fs');
var stream = fs.createWriteStream('hello.js', { mode: 0o755 });
stream.write("#!/usr/bin/node\n");
stream.write("console.log('hello world');");
stream.end();
This will create a file called hello.js
with the mode set to 755 permissions.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With