Skip to content

Own simple implementation of fs.WriteStream and stream.Writable

Notifications You must be signed in to change notification settings

D9RS/writable-streams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Writable Streams

My own simple implementation of Writable (stream.Writable) and WritableFileStream (fs.WriteStream) streams.

This implementation does not support some features of the built-in Node.js streams. For example, such parameters of the Writable stream as are not supported:

  • decodeStrings
  • objectMode

You can learn more about these parameters in Node.js documentation.