# floader

> File reading utility, Browserify aware

Latest version **1.0.1** (published 2013-10-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install floader
pnpm add floader
yarn add floader
bun add floader
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2013-10-21 |
| First published | 2013-08-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Glen Huang |
| Maintainers | curvedmark |
| Keywords | file, fs, filesystem, xhr |

## Links

- npm: https://www.npmjs.com/package/floader
- Repository: https://github.com/curvedmark/floader
- Issues: https://github.com/curvedmark/floader/issues
- npm.io page: https://npm.io/package/floader

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 1.0.1 (latest) — 2013-10-21
- 1.0.0 — 2013-08-30

## README

# floader

File reading utility, Browserify aware.

Use `fs.readFile` when directly required. Use XHR when being browserified.

## Installation

	npm install floader

## Example

```javascript
var loader = require('floader');
loader.load('/path/to/file', function (err, content) {
	console.log(content);
});
```

---
_Source: https://npm.io/package/floader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
