1.0.33 • Published 3 years ago

@anzerr/form.pipe v1.0.33

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

Intro

GitHub Actions status | linter GitHub Actions status | publish GitHub Actions status | test

Parse stream of multipart into sub streams per part

Install

npm install --save git+https://git@github.com/anzerr/form.pipe.git

Example

const fs = require('fs'),
	path = require('path'),
	FormPipe = require('form.pipe');

fs.createReadStream('./test/out.dump').pipe(new FormPipe()).on('data', (file) => {
	file.stream.pipe(fs.createWriteStream(path.join(__dirname, file.filename))).on('close', () => {
		console.log(file.name, 'done');
	});
});
1.0.33

3 years ago

1.0.32

4 years ago

1.0.31

4 years ago

1.0.29

4 years ago

1.0.30

4 years ago

1.0.28

4 years ago

1.0.27

4 years ago

1.0.26

4 years ago

1.0.25

4 years ago

1.0.24

4 years ago

1.0.23

4 years ago

1.0.17

5 years ago

1.0.16

5 years ago

1.0.15

5 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago