# fstream-npm

> fstream class for creating npm packages

Latest version **1.2.1** (published 2017-05-13) · ISC license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install fstream-npm
pnpm add fstream-npm
yarn add fstream-npm
bun add fstream-npm
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2017-05-13 |
| First published | 2012-03-27 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 29 |
| Author | Isaac Z. Schlueter |
| Maintainers | iarna, isaacs, othiym23, zkat |

## Links

- npm: https://www.npmjs.com/package/fstream-npm
- Repository: https://github.com/npm/fstream-npm
- Homepage: https://github.com/npm/fstream-npm#readme
- Issues: https://github.com/npm/fstream-npm/issues
- npm.io page: https://npm.io/package/fstream-npm

## Dependencies (2)

- [inherits](https://npm.io/package/inherits.md) 2
- [fstream-ignore](https://npm.io/package/fstream-ignore.md) ^1.0.0

## Recent versions

- 1.2.1 (latest) — 2017-05-13
- 1.2.0 — 2016-09-07
- 1.1.1 — 2016-08-02
- 1.1.0 — 2016-05-17
- 1.0.7 — 2015-11-05
- 1.0.6 — 2015-11-05
- 1.0.5 — 2015-08-20
- 1.0.4 — 2015-07-08
- 1.0.3 — 2015-06-19
- 1.0.2 — 2015-03-20
- 1.0.1 — 2014-10-17
- 1.0.0 — 2014-07-31
- 0.1.8 — 2014-07-31
- 0.1.7 — 2014-05-19
- 0.1.6 — 2013-10-11
- … 12 more at https://npm.io/package/fstream-npm/versions

## README

# fstream-npm

This is an fstream DirReader class that will read a directory and filter
things according to the semantics of what goes in an npm package.

For example:

```javascript
// This will print out all the files that would be included
// by 'npm publish' or 'npm install' of this directory.

var FN = require("fstream-npm")
FN({ path: "./" })
  .on("child", function (e) {
    console.error(e.path.substr(e.root.path.length + 1))
  })
```

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