A library to simplify the creation and manipulation of Node.js streams, providing utilities for handling transform, duplex, and readable/writable streams effectively in TypeScript.
Go to file
2017-06-30 18:37:48 +02:00
dist update smartstream 2017-06-30 18:32:32 +02:00
test update smartstream 2017-06-30 18:32:32 +02:00
ts update smartstream 2017-06-30 18:32:32 +02:00
.gitignore added gitlab ci 2016-09-25 14:00:16 +02:00
.gitlab-ci.yml update ci 2017-06-30 18:37:48 +02:00
npmextra.json update ci 2017-03-04 13:53:18 +01:00
package.json 1.0.9 2017-06-30 18:32:34 +02:00
README.md improved README 2016-09-25 16:28:42 +02:00
tslint.json added gitlab ci 2016-09-25 14:00:16 +02:00
yarn.lock update smartstream 2017-06-30 18:32:32 +02:00

smartstream

simplifies access to node streams, TypeScript ready!

Availabililty

npm git git docs

Status for master

build status coverage report Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

We recommend the use of TypeScript for best in class intellisense support.

import { Smartstream } from 'smartstream'
import * as gUglify from 'gulp-uglify'

let mySmartstream = new Smartstream([
    gulp.src(['./file1.js','./file2.js']),
    gUglify(),
    gulp.dest('./some/output/path')
])

mySmartstream.onError((err) => { /* handle error */ }) // handles all errors in stream
myStream.onCustomEvent('myeventname', (args...) => { /* Do something */ }) // emit an custom event anywhere in your stream
mySmartstream.run().then(() => {/* do something when stream is finished */})