npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pwd-fs

v2.4.2

Published

Extend the file system the capabilities of declaring the present working directory and recursive execution

Downloads

77

Readme

Powered File System

License Build Status Build status Coverage Status Known Vulnerabilities

npm

This module expands the Node.js® module with the capabilities of declaring the pwd (present working directory) and recursive execution. By default all file system operations have asynchronous forms. API provides an alternative set of asynchronous file system methods that return Promise objects.

To improve reliability and maintainability the code is migrated to TypeScript.

Getting Started

Installation

To use Powered File System in your project, run:

npm i pwd-fs

Table of Contents

class PoweredFileSystem

The scope URI of the class methods are divided into groups.

| URI | Methods | |-----------------------------|------------------------------------------------------------------| | Common (file and directory) | chmod chown copy remove rename symlink stat test | | File only | read write | | Directory only | mkdir readdir |

class PoweredFileSystem

This class implemented by following the ECMAScript® 2018 Language Specification Standard.

constructor: new PoweredFileSystem([path])

String form paths are interpreted as UTF-8 character sequences identifying the absolute or relative filename.

import PoweredFileSystem from 'pwd-fs';

/**
 * pfs.pwd === process.cwd()
 */

const pfs = new PoweredFileSystem();

Relative paths will be resolved relative to the current working directory as specified by process.cwd():

import PoweredFileSystem from 'pwd-fs';

/**
 * pfs.pwd === `${process.cwd()}/foo/bar`
 */

const pfs = new PoweredFileSystem('./foo/bar');

Absolute paths:

import PoweredFileSystem from 'pwd-fs';

/**
 * pfs.pwd === __dirname
 */

const pfs = new PoweredFileSystem(__dirname);

pfs.test(src[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • flag <String> Is an optional string that specifies the accessibility checks to be performed. Default: 'e'.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful read, the Promise is resolved with an value with a boolean.

Tests a user's permissions for the file or directory specified by path.

const access = await pfs.test('./path');
console.log(test); // true

Function pfs.test() return only Promise.resolve()

The following flag are meant for use with pfs.test().

Flag | Description -----|------------- 'e' | Source is visible 'r' | Permitted can be read 'w' | Permitted can be written 'x' | Permitted can be executed. This has no effect on Windows system (will behave like e).

pfs.stat(src[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful read, the Promise is resolved with an value with a fs.Stats.

These functions return information about a resource in the file system.

pfs.chmod(src, mode[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • mode <Number> Is a numeric bitmask created using a logical OR.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful change, the Promise is resolved with an value with a undefined.

Asynchronously changes the permissions of a file.

await pfs.chmod('./path', 0o750);
const { mode } = await pfs.stat('./path');

console.log(PoweredFileSystem.bitmask(mode) === 0o750); // true

Caveats: on Windows only the write permission can be changed, and the distinction among the permissions of group, owner or others is not implemented.

See manuals chmod(2)

pfs.chown(src, uid, gid[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • uid <Number>
  • gid <Number>
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful change, the Promise is resolved with an value with a undefined.

Asynchronously changes owner and group of a file. See manuals chown(2).

pfs.symlink(src, use[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • use <String> Absolute or relative path to the resource in the file system. If use exists, it will not be overwritten.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful created link, the Promise is resolved with an value with a undefined.

Asynchronously creates a new symbolic link (also known as a soft link) may point to an existing file or to a nonexistent one.

await pfs.symlink('./path', './link');
const stats = await pfs.stat('./link');

console.log(stats.isSymbolicLink()); // true

See manuals symlink(2).

pfs.copy(src, dir[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • dir <String> Absolute or relative path to the directory to which the resource is to be copied.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • umask <Number> Umask or file mode creation mask is a grouping of bits, each of which restricts how its corresponding permission is set for newly created files or directories. See manuals umask(2). Not supported on Windows system. Default: 0o000.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful copied, the Promise is resolved with an value with a undefined.

Asynchronously recursively copy a file or directory.

await pfs.copy('./path/file.txt', './dist');
const { mode } = await pfs.stat('./dist/path/file.txt');

console.log(PoweredFileSystem.bitmask(mode) === 0o666); // true

pfs.rename(src, use[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • use <String> Absolute or relative path to the resource in the file system.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful renamed, the Promise is resolved with an value with a undefined.

Rename file or directory. See manuals rename(2).

await pfs.rename('./path/old_name.txt', './path/new_name.txt');

pfs.remove(src[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful removed, the Promise is resolved with an value with a undefined.

Asynchronously recursively remove a file or directory. Will be resolve if the directory already not exists.

pfs.read(src[, options])]

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • options <Object>
  • returns: <Promise> Following successful read, the Promise is resolved with an value with a string. If no encoding is specified <null>, the data is returned as a <Buffer> object.

Asynchronously reads the entire contents of a file.

const content = await pfs.read('./file.txt');
console.log(content); // 'Lorem Ipsum...'

pfs.write(src, data[, options])

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • data <String>
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • umask <Number> Umask or file mode creation mask is a grouping of bits, each of which restricts how its corresponding permission is set for newly created files or directories. See manuals umask(2). Not supported on Windows system. Default: 0o000.
    • encoding <String> Is the expected string encoding. Default: 'utf8'.
    • flag <String> See support of file system flags. Default: 'w'.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful write, the Promise is resolved with an value with a undefined.

Asynchronously writes data to a file, replacing the file if it already exists. if the file does not exist, it will create a new one. The encoding option is ignored if data is a buffer.

await pfs.write('./file.txt', '... some text');

This function is limited to writing only string. For stream, fs.createWriteStream() is recommended.

pfs.append(src, data[, options]) deprecated

  • src <String> Absolute or relative path to the resource in the file system. Relative paths will be resolved relative to the present working directory as specified by pfs.pwd.
  • data <String>
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • umask <Number> Umask or file mode creation mask is a grouping of bits, each of which restricts how its corresponding permission is set for newly created files or directories. See manuals umask(2). Not supported on Windows system. Default: 0o000.
    • encoding <String> Is the expected string encoding. Default: 'utf8'.
    • flag <String> See support of file system flags. Default: 'a'.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful write, the Promise is resolved with an value with a undefined.

Asynchronously append data to a file, creating the file if it does not yet exist.

NOTE Method is deprecated. May be removed in the next major version

Use instead pfs.write(src, data[, options]) with { flag: 'a' } option

await pfs.write('./file', 'some content', {
  flag: 'a'
});

pfs.readdir(dir[, options]

  • dir <String> Absolute or relative path to the directory you want to read.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • encoding <String> | <null> Is the expected string encoding. Default: 'utf8'.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful write, the Promise is resolved with an value with a Array of the names of the files in the directory excluding '.' and '..'. If no encoding is specified <null>, the data is returned as a <Buffer> object. Otherwise, the data will be a string.

Asynchronous reads the contents of a directory. The Gets an <Array> of the names of the files in the directory excluding '.' and '..'. Returns an empty Array if the directory is empty. See manuals readdir(3).

const list = await pfs.readdir('./files');
console.log(list); // ["icons", "logo.svg"]

pfs.mkdir(dir[, options])

  • dir <String> Absolute or relative path to the directory you want to read.
  • options <Object>
    • resolve <Boolean> Declaration whether relative paths will be resolved. Default: true.
    • umask <Number> Umask or file mode creation mask is a grouping of bits, each of which restricts how its corresponding permission is set for newly created files or directories. See manuals umask(2). Not supported on Windows system. Default: 0o000.
    • encoding <String> Is the expected string encoding. Default: 'utf8'.
    • sync <Boolean> Synchronous execution. Default: false.
  • returns: <Promise> Following successful execution, the Promise is resolved with an value with a undefined.

Recursive directory creation. Will be resolve if the directory already exists.

await pfs.mkdir('./static/images');

pfs.pwd

The full path from the root directory to the present working directory: in the context of which relative paths will be resolved.

Mode creation mask

The following table shows some examples of how to set the extension mode or umask for files and directories.

Umask | Mode files | Mode directories ------|-------|------------ 0o000 | 0o666 (rw-rw-rw-) | 0o777 (rwxrwxrwx) 0o002 | 0o664 (rw-rw-r--) | 0o775 (rwxrwxr-x) 0o007 | 0o660 (rw-rw----) | 0o770 (rwxrwx---) 0o022 | 0o644 (rw-r--r--) | 0o755 (rwxr-xr-x) 0o027 | 0o640 (rw-r-----) | 0o750 (rwxr-x---) 0o077 | 0o600 (rw-------) | 0o700 (rwx------) 0o277 | 0o400 (r--------) | 0o500 (r-x------)

String encoding

The following encoding are available wherever the encoding option takes a <String>.

Encoding | Description ---------|------------ 'ascii' | Each alphabetic, numeric or special character is represented by a 7-bit binary number (a string of seven 0 or 1), which is assigned a number from 0 to 127. 'base64' | Three 8-bit bytes (i.e., a total of 24 bits) can be represented by four 6-bit digits. The full specification of this form is contained in IANA RFC 1421 and RFC 2045. 'hex' | Encode each byte as two hexadecimal characters. 'ucs2 | 2 or 4 bytes, little-endian encoded Unicode characters. Surrogate pairs (U+10000 to U+10FFFF) are supported. 'utf16le' | Like 'ucs2. 'utf8' | Multibyte encoded Unicode characters. The first 128 characters of Unicode, which correspond one-to-one with ascii, are encoded using a single octet with the same binary value as ascii, so that valid ascii text is valid utf8-encoded Unicode as well. 'latin1' | Defined by the IANA in RFC1345, only in node 6.4.0+. 'binary' | Like 'latin1.

File system flags

The following flags are available for pfs.read and pfs.write the flag option takes a <String>.

Flag | Description -----|------------ 'a' | Open file for appending. The file is created if it does not exist. 'ax' | Like 'a' but fails if the path exists. 'a+' | Open file for reading and appending. The file is created if it does not exist. 'ax+' | Like 'a+' but fails if the path exists. 'as' | Open file for appending in synchronous mode. The file is created if it does not exist. 'as+' | Open file for reading and appending in synchronous mode. The file is created if it does not exist. 'r' | Open file for reading. An exception occurs if the file does not exist. 'r+' | Open file for reading and writing. An exception occurs if the file does not exist. 'rs+' | Open file for reading and writing in synchronous mode. Instructs the operating system to bypass the local file system cache. Using this flag is not recommended unless it is needed. 'w'| Open file for writing. The file is created (if it does not exist) or truncated (if it exists). 'wx' | Like 'w' but fails if the path exists. 'w+' | Open file for reading and writing. The file is created (if it does not exist) or truncated (if it exists). 'wx+' | Like 'w+' but fails if the path exists.

The behavior of some flags are platform-specific.