# pull-reader **Repository Path**: mirrors_regular/pull-reader ## Basic Information - **Project Name**: pull-reader - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pull-reader read bytes from a binary pull-stream ## example ``` js var Reader = require('pull-reader') var File = require('pull-file') var reader = Reader(1000) //1 second timeout, abort upstream if read takes longer than this. pull( File('./package.json'), reader ) //read the first byte of a file reader.read(1, function (err, data) { console.log(data.toString()) // => { }) ``` ## License MIT