Skip to content
/ fs-es Public

An ES (JavaScript & TypeScript) module for enhanced file system operation.

License

Notifications You must be signed in to change notification settings

hugoalh/fs-es

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

File System (ES)

⚖️ MIT

GitHub: hugoalh/fs-es JSR: @hugoalh/fs NPM: @hugoalh/fs

An ES (JavaScript & TypeScript) module for enhanced file system operation.

🔰 Begin

🎯 Targets

Remote JSR NPM
Bun >= v1.1.0 ✔️
Deno >= v2.1.0 ✔️ ✔️ ✔️
NodeJS >= v22.11.0 ✔️

Note

  • It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.

#️⃣ Resources Identifier

  • Remote - GitHub Raw:
    https://raw.githubusercontent.com/hugoalh/fs-es/{Tag}/mod.ts
    
  • JSR:
    [jsr:]@hugoalh/fs[@{Tag}]
    
  • NPM:
    [npm:]@hugoalh/fs[@{Tag}]
    

Note

  • For usage of remote resources, it is recommended to import the entire module with the main path mod.ts, however it is also able to import part of the module with sub path if available, but do not import if:

    • it's path has an underscore prefix (e.g.: _foo.ts, _util/bar.ts), or
    • it is a benchmark or test file (e.g.: foo.bench.ts, foo.test.ts), or
    • it's symbol has an underscore prefix (e.g.: _bar, _foo).

    These elements are not considered part of the public API, thus no stability is guaranteed for them.

  • For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file jsr.jsonc property exports for available sub entrypoints.

  • It is recommended to use this module with tag for immutability.

🛡️ Runtime Permissions

  • File System - Read [Deno: read; NodeJS 🧪: fs-read]
    • Resources
  • File System - Write [Deno: write; NodeJS 🧪: fs-write]
    • Resources (Optional)
  • Subprocesses [Deno: run]
    • pwsh (Optional)
  • System Information [Deno: sys]
    • gid (Optional, POSIX/UNIX Platforms)
    • uid (Optional, POSIX/UNIX Platforms)

🧩 APIs

  • function compareDirectories(oldPath: string | URL, newPath: string | URL): Promise<FSCompareDirectoriesResult>;
  • function emptyDir(path: string | URL): Promise<void>;
  • function ensureDir(path: string | URL): Promise<void>;
  • function ensureFile(path: string | URL): Promise<void>;
  • function ensureLink(sourcePath: string | URL, targetPath: string | URL): Promise<void>;
  • function ensureSymlink(sourcePath: string | URL, targetPath: string | URL): Promise<void>;
  • function exist(path: string | URL, options?: FSExistOptions): Promise<boolean>;
  • function getDriveInfo(options?: FSGetDriveInfoOptions): Promise<FSDriveInfo[]>;
  • function getHash(path: string | URL, options?: FSGetHashOptions): Promise<string>;
  • function getSize(path: string | URL): Promise<bigint>;
  • function walk(root: string | URL, options?: FSWalkOptions & { extraInfo?: false; }): Promise<AsyncGenerator<FSWalkEntry>>;
    function walk(root: string | URL, options: FSWalkOptions & { extraInfo: true; }): Promise<AsyncGenerator<FSWalkEntryExtra>>;

Note

✍️ Examples

  • await emptyDir("./foo");
  • await ensureDir("./foo");
  • await ensureFile("./foo.dat");
  • await ensureLink("./path/to/source.dat", "./path/to/link.dat");
  • await ensureSymlink("./path/to/source.dat", "./path/to/link.dat");
  • await exist("./exist");
    //=> true
  • await getHash(Deno.cwd());
    //=> "87C77A27D4779AB3078B941B86FF07CA0929A4E9D9581F6BAE380F3194287E3ADF4863355711426E79D4B673B71E9DE5F2A3E3F9D12C93FF2BDBD376DE93065D"

About

An ES (JavaScript & TypeScript) module for enhanced file system operation.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published