JSPM

chmodrp

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7478
  • Score
    100M100P100Q121197F
  • License MIT

`chmod -R` with the Promise API

Package Exports

  • chmodrp

Readme

chmodrp

npm version

A port of isaacs's chmodr but using the Promise API.
Has the same effect as the command line command: chmod -R.

Install

npm install chmodrp

API

chmodr(path, mode)

Returns: Promise<void>

Takes the same arguments as fs.promises.chmod()

path

Type: string

The path of the file to recursively chmod.

mode

Type: number

The file mode to chmod the files with.

chmodrSync(path, mode)

Returns: void

Does the same thing as chmodr(path, mode) but synchronously.

Usage

import { chmodr, chmodrSync } from 'chmodrp';

await chmodr('/var/www/my/test/folder', 0o777);
chmodrSync('/var/www/my/test/folder2', 0o777);