Socket
Socket
Sign inDemoInstall

file-reader

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

file-reader

Read a glob of files, dynamically choosing the reader or requiring the files based on the file extension.


Version published
Weekly downloads
2K
decreased by-13.2%
Maintainers
1
Weekly downloads
 
Created
Source

file-reader NPM version

Read a glob of files, dynamically choosing the reader or requiring the files based on the file extension.

Install

Install with npm:
npm i file-reader --save-dev

Run tests

npm test

Usage

var reader = require('file-reader');

console.log(reader('*.js'));
//=> { a: [Function: aaa], b: [Function: bbb], c: [Function: ccc] }

console.log(reader('*.txt'));
//=> { a: 'AAA', b: 'BBB', c: 'CCC' }

console.log(reader('*.{yml,json}'));
//=> { a: { a: 'a' }, b: { b: 'b' }, c: { c: 'c' } }

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on November 02, 2014.

Keywords

FAQs

Package last updated on 02 Nov 2014

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