KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
buffer-stream
★ 14
Open GitHub ↗
A duplex stream that buffers writes
Download README (.md)
Explore Similar Repositories
CodeRunner-templates
:
My CodeRunner templates (See readme for list)
webfilebrowser
:
Web File Browser
rock
:
Generate file structures or project skeletons from predefined templates.
coqjvm
:
Coq executable semantics and resource verifier
serpent
:
An Open Web app version of the classic game "snake".
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
buffer-stream
?
Download (.md)
# buffer-stream A duplex stream that buffers writes ## Example ``` js var BufferStream = require("buffer-stream") var buffer = BufferStream().buffer() buffer.write("stuff") buffer.on("data", doStuff) someTimeLater(function (stream) { // Oh we have a stream // Empty the buffer onto the stream // Further writes to the buffer go directly to the stream // Any data the stream emits get's re-emitted on the buffer buffer.empty(stream) }) ``` ## Installation `npm install buffer-stream` ## Contributors - Raynos ## MIT Licenced