Change permissions for both files and directories
npm install chmod-plus -g
var chmod-plus = require('chmod-plus');
chmod-plus.directory(755, dir);
chmod-plus.file(755, file);
Directories can also be recursive:
chmod-plus.directory(755, dir, {
recursive: true
});
Released under the MIT License.