# node-abe **Repository Path**: mirrors_defunctzombie/node-abe ## Basic Information - **Project Name**: node-abe - **Description**: Expose ArrayBuffers as read/write text streams - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # abe # Create read/write streams for decoding/encoding text data from ArrayBuffer arrays. ```javascript var ArrayReadStream = require('abe').ArrayReadStream; // lets say this is some stream which emits data as array buffers var array_buff_stream; // by piping the array buffer stream into our decode stream // we will get the decoded data var read_stream = array_buff_stream.pipe(new ArrayReadStream('utf-8')); read_stream.on('data', function(chunk) { // chunk is now utf-8 data }); ```