JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 121326
  • Score
    100M100P100Q161113F

File I/O by Vow

Package Exports

  • vow-fs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vow-fs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Vow-fs Build Status

Vow-based file I/O for Node.js

Getting Started

You can install Vow-fs using Node Package Manager (npm):

npm install vow-fs
var fs = require('vow-fs');

API

####read(path, [encoding])#### ####write(path, data, [encoding])#### ####append(path, data, [encoding])#### ####remove(path)#### ####copy(sourcePath, targetPath)#### ####move(sourcePath, targetPath)#### ####stats(path)#### ####exists(path)#### ####link(sourcePath, targetPath)#### ####symLink(sourcePath, targetPath, [type])#### ####chown(path, uid, gid)#### ####chmod(path, mode)#### ####absolute(path)#### ####isFile(path)#### ####isDir(path)#### ####isSocket(path)#### ####isSymLink(path)#### ####listDir(path)#### ####makeDir(path, [mode], [failIfExist=false])#### ####removeDir(path)####