0.2.5 • Published 7 years ago

xchmod v0.2.5

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Chmod Build Status Coverage Status

Inspired by gulp-chmod, but can be used everywhere.


Install

$ npm install chmod -g

Usage

var chmod = require('chmod');
chmod(file, 777);

Or you can use object instead of number, see stat-mode

chmod(file, {
  owner: {
    read: true,
    write: true,
    execute: true
  },
  group: {
    read: true,
    write: true,
    execute: true
  },
  others: {
    read: true,
    write: true,
    execute: true
  }
});

You can also write a object Simply when the same for each

chmod(file, {
  read: true
});

// equals

chmod(file, {
  owner: {
    read: true
  },
  group: {
    read: true
  },
  others: {
    read: true
  }
});

Otherwise will throw

LISENCE

Copyright (c) 2014 popomore. Licensed under the MIT license.

0.2.5

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago