Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anyfs/vinyl-fs-plugin
Vinyl-fs plugin for AnyFS.
https://github.com/anyfs/vinyl-fs-plugin
Last synced: 2 days ago
JSON representation
Vinyl-fs plugin for AnyFS.
- Host: GitHub
- URL: https://github.com/anyfs/vinyl-fs-plugin
- Owner: anyfs
- License: mit
- Created: 2015-04-14T10:25:44.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-15T10:17:51.000Z (almost 10 years ago)
- Last Synced: 2025-01-18T17:06:48.919Z (4 days ago)
- Language: JavaScript
- Homepage:
- Size: 133 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vinyl-fs-plugin
[![npm](https://img.shields.io/npm/v/anyfs-vinyl-fs-plugin.svg?style=flat-square)](https://www.npmjs.com/package/anyfs-vinyl-fs-plugin)
[![npm](https://img.shields.io/npm/dm/anyfs-vinyl-fs-plugin.svg?style=flat-square)](https://www.npmjs.com/package/anyfs-vinyl-fs-plugin)
[![Travis](https://img.shields.io/travis/anyfs/vinyl-fs-plugin.svg?style=flat-square)](https://travis-ci.org/anyfs/vinyl-fs-plugin)
![npm](https://img.shields.io/npm/l/anyfs-vinyl-fs-plugin.svg?style=flat-square)Vinyl-fs plugin for AnyFS.
## Usage
```js
var fs = new AnyFS(adapter);
var plugin = new (require('anyfs-vinyl-fs-plugin'));
fs.addPlugin(plugin);fs.src('js/**/*.js')
.pipe(fs.dest('backup'));
```## Acknowledgement
This plugin is based on [wearefractal](https://github.com/wearefractal)'s [vinyl-fs](https://github.com/wearefractal/vinyl-fs) package.