Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 890B

4 years ago
1234567891011121314151617181920212223242526272829
  1. # stream-combiner
  2. <img src=https://secure.travis-ci.org/dominictarr/stream-combiner.png?branch=master>
  3. ## Combine (stream1,...,streamN)
  4. Turn a pipeline into a single stream. `pipeline` returns a stream that writes to the first stream
  5. and reads from the last stream.
  6. Listening for 'error' will recieve errors from all streams inside the pipe.
  7. ``` js
  8. var Combine = require('stream-combiner')
  9. var es = require('event-stream')
  10. Combine( //connect streams together with `pipe`
  11. process.openStdin(), //open stdin
  12. es.split(), //split stream to break on newlines
  13. es.map(function (data, callback) {//turn this async function into a stream
  14. callback(null
  15. , inspect(JSON.parse(data))) //render it nicely
  16. }),
  17. process.stdout // pipe it to stdout !
  18. )
  19. ```
  20. ## License
  21. MIT