0.1.0 • Published 6 years ago

file-wrapper v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

File Wrapper

A small class wrapping a node file to provide some common fields.

Usage Example

const fs = require('fs-extra');
const File = require('file-wrapper');


async function main() {
  const filePath = '/folder/file.txt';
  const fileData = await fs.readFile(filePath);

  const file = new File(filePath, fileData);

  console.log(file.name);  // file.txt
  console.log(file.dir);   // /folder
  console.log(file.data);  // file contents
  console.log(file.path);  // /folder/file.txt
}

LICENSE

MIT. See LICENSE.