Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chmodrp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chmodrp

`chmod -R` with the Promise API

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
20K
increased by46.73%
Maintainers
1
Weekly downloads
 
Created
Source

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);

Keywords

FAQs

Package last updated on 11 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc