René's URL Explorer Experiment


Title: Zlib Stream API corrupts data. · Issue #61202 · nodejs/node · GitHub

Open Graph Title: Zlib Stream API corrupts data. · Issue #61202 · nodejs/node

X Title: Zlib Stream API corrupts data. · Issue #61202 · nodejs/node

Description: Version v24.5.0 and even previous LTS version 22 Platform Tried both on MAC OS(M4 arm64) and Windows 11(Intel x64) Subsystem node:Zlib What steps will reproduce the bug? I am trying to use zlib inside a transform stream which compresses ...

Open Graph Description: Version v24.5.0 and even previous LTS version 22 Platform Tried both on MAC OS(M4 arm64) and Windows 11(Intel x64) Subsystem node:Zlib What steps will reproduce the bug? I am trying to use zlib ins...

X Description: Version v24.5.0 and even previous LTS version 22 Platform Tried both on MAC OS(M4 arm64) and Windows 11(Intel x64) Subsystem node:Zlib What steps will reproduce the bug? I am trying to use zlib ins...

Opengraph URL: https://github.com/nodejs/node/issues/61202

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Zlib Stream API corrupts data.","articleBody":"### Version\n\nv24.5.0 and even previous LTS version 22\n\n### Platform\n\n```text\nTried both on MAC OS(M4 arm64) and Windows 11(Intel x64)\n```\n\n### Subsystem\n\nnode:Zlib\n\n### What steps will reproduce the bug?\n\nI am trying to use zlib inside a transform stream which compresses multiple streams with separate zlib instances. like given below\n\n```typescript\n\ntype TSplitStreamContext = {\n        redisTempKey: string,\n        csvObjectStringifier?: ReturnType\u003ctypeof createObjectCsvStringifier\u003e,\n        zipper?: Gzip,\n        downStream?: Stream[]\n    };\n\nconst tagsStreamContext = new Map\u003cstring, TSplitStreamContext\u003e();\n\nconst zipStream = new Transform({\n        objectMode: true,\n        transform(tagWiseCSVChunks: Record\u003cstring, string\u003e, encoding, callback) {\n            const tagIdVSChunkRecords = Object.entries(tagWiseCSVChunks);\n            let upstreamPressure = 0;\n            let downstreamBackPressure = 0;\n\n            for (const [tagId, csvChunk] of tagIdVSChunkRecords) {\n                const existingContext = tagsStreamContext.get(tagId) ?? {} as TSplitStreamContext;\n\n                if (existingContext.zipper == null || existingContext.zipper === undefined) {\n                    existingContext.zipper = createGzip();\n\n                    existingContext.zipper.on('data', (chunk: Buffer) =\u003e {\n                        if (this.push({ [tagId]: chunk }) === false) {\n                            downstreamBackPressure++;\n                            existingContext.zipper!.pause();\n                            this.once('drain', () =\u003e {\n                                downstreamBackPressure--;\n                                if (downstreamBackPressure === 0) {\n                                    existingContext.zipper!.resume();\n                                }\n                            });\n                        }\n                    });\n\n                    tagsStreamContext.set(tagId, existingContext);\n                }\n\n                if (existingContext.zipper.write(csvChunk) === false) {\n                    upstreamPressure++;\n                    existingContext.zipper.once('drain', () =\u003e {\n                        upstreamPressure--;\n                        if (upstreamPressure === 0) {\n                            callback();//This controls upstream flow\n                        }\n                    });\n                }\n            }\n            if (upstreamPressure === 0) {\n                callback();//This controls upstream flow\n            }\n\n        },\n\n        final(callback) {\n            const promiseHandles = [];\n\n            for (const [tagId, context] of tagsStreamContext) {\n                if (context.zipper !== null \u0026\u0026 context.zipper !== undefined) {\n                    promiseHandles.push(new Promise\u003cvoid\u003e((resolve, reject) =\u003e {\n                        context.zipper!.once('end', resolve);\n                        context.zipper!.once('error', reject);\n                        context.zipper!.end();\n                    }));\n                }\n            }\n\n            Promise.all(promiseHandles)\n                .then(() =\u003e { callback(); console.log('All zippers ended.'); })\n                .catch(err =\u003e callback(err));\n        }\n    });\n\n```\n\nI invoke this code with more stream which pass data to this transform stream like file reader, csv parser etc and downstream i have filewriter, Everything this only produces half of the data from the actual file and half is not written.\n\n### How often does it reproduce? Is there a required condition?\n\nThis happens every time.\n\n### What is the expected behavior? Why is that the expected behavior?\n\nIt should normally compress all of the file data and just act like a normal pipe operation.\n\n### What do you see instead?\n\nIt only transforms half of the file.\n\nImportant part is it works for small files \u003c100MB but fails for any bigger files.. i assume this is something to do with its internal buffers i guess (speculation)\n\nrename the attached code file from `ts` to `mts` for some reason github is not allowing `mts` extension\n\n### Additional information\n\nThe Entire code:\n\n```typescript\n\nimport { appendFileSync, createReadStream, createWriteStream, mkdirSync } from 'node:fs';\nimport Stream, { PassThrough, Transform } from 'node:stream';\nimport { pipeline } from 'node:stream/promises';\nimport { createGzip, Gzip } from 'node:zlib';\nimport csvParser from 'csv-parser';\nimport redis from 'redis';\nimport { randomInt } from 'node:crypto';\nimport { createObjectCsvStringifier } from 'csv-writer';\n\nasync function streamTodo(csvFilePath: string, expiryTimeInMilliseconds: number, redisClient: redis.RedisClientType, redisTempKeyPartA = `temp-stream-${randomInt(1e6)}-`, redisTempStreamingTimeout = 10000): Promise\u003cvoid\u003e {\n    type TTagStreamObject = { timestamp: number, value: number, status: number, tag: string };\n    type TSplitStreamContext = {\n        redisTempKey: string,\n        csvObjectStringifier?: ReturnType\u003ctypeof createObjectCsvStringifier\u003e,\n        zipper?: Gzip,\n        downStream?: Stream[]\n    };\n\n    const tagsStreamContext = new Map\u003cstring, TSplitStreamContext\u003e();\n    const rowAccumulatorMap = new WeakMap\u003cTransform, Array\u003cRecord\u003cstring, string\u003e\u003e\u003e();\n\n    const inputFileStream = createReadStream(csvFilePath, { encoding: 'utf8' });\n\n    const csvStream = csvParser();\n\n    const rowAccumulator = new Transform({\n        objectMode: true,\n        highWaterMark: 100, // Adjust this value as needed for batch size.(sweet spot between memory and speed)\n        transform(row: Record\u003cstring, string\u003e, encoding, callback) {\n            const acc = rowAccumulatorMap.get(this) ?? new Array\u003cRecord\u003cstring, string\u003e\u003e();\n            acc.push(row);\n            if (acc.length \u003e= this.readableHighWaterMark) {\n                callback(null, acc);\n                acc.length = 0;\n            } else {\n                rowAccumulatorMap.set(this, acc);\n                callback();\n            }\n        },\n        flush(callback) {\n            const acc = rowAccumulatorMap.get(this) ?? new Array\u003cRecord\u003cstring, string\u003e\u003e();\n            callback(null, acc);\n            acc.length = 0;\n        }\n    });\n\n    const tagSegregationStream = new Transform({\n        objectMode: true,\n        transform(rows: Record\u003cstring, string\u003e[], encoding, callback) {\n            const tagWiseData: Record\u003cstring, TTagStreamObject[]\u003e = {};\n            for (const row of rows) {\n                for (const [key, value] of Object.entries(row)) {\n                    if (key !== 'timestamp' \u0026\u0026 !key.endsWith('_status')) {\n                        const existingArray = tagWiseData[key] ?? [];\n                        existingArray.push({\n                            timestamp: parseFloat(row['timestamp']),\n                            value: parseFloat(value),\n                            status: parseFloat(row[`${key}_status`]),\n                            tag: key\n                        });\n                        tagWiseData[key] = existingArray;\n                    }\n                }\n            }\n            callback(null, tagWiseData);\n        }\n    });\n\n    const outputCSVStream = new Transform({\n        objectMode: true,\n        transform(tagWiseData: Record\u003cstring, TTagStreamObject[]\u003e, encoding, callback) {\n\n            const tagWiseCSVChunks: Record\u003cstring, string\u003e = {};\n            for (const [tagId, data] of Object.entries(tagWiseData)) {\n                tagWiseCSVChunks[tagId] = \"\";\n                const existingContext = tagsStreamContext.get(tagId) ?? {} as TSplitStreamContext;\n                if (existingContext?.csvObjectStringifier == undefined || existingContext?.csvObjectStringifier == null) {\n\n                    existingContext.csvObjectStringifier = createObjectCsvStringifier({\n                        header: [\n                            { id: 'timestamp', title: 'timestamp' },\n                            { id: 'value', title: 'value' },\n                            { id: 'status', title: 'status' }\n                        ]\n                    });\n                    tagsStreamContext.set(tagId, existingContext);\n                    tagWiseCSVChunks[tagId] = existingContext.csvObjectStringifier.getHeaderString() ?? \"\";\n                }\n\n                tagWiseCSVChunks[tagId] += existingContext.csvObjectStringifier.stringifyRecords(data);\n            }\n\n            callback(null, tagWiseCSVChunks);\n        }\n    });\n\n    const zipStream = new Transform({\n        objectMode: true,\n        transform(tagWiseCSVChunks: Record\u003cstring, string\u003e, encoding, callback) {\n            const tagIdVSChunkRecords = Object.entries(tagWiseCSVChunks);\n            let upstreamPressure = 0;\n            let downstreamBackPressure = 0;\n\n            for (const [tagId, csvChunk] of tagIdVSChunkRecords) {\n                const existingContext = tagsStreamContext.get(tagId) ?? {} as TSplitStreamContext;\n\n                if (existingContext.zipper == null || existingContext.zipper === undefined) {\n                    existingContext.zipper = createGzip();\n\n                    existingContext.zipper.on('data', (chunk: Buffer) =\u003e {\n                        if (this.push({ [tagId]: chunk }) === false) {\n                            downstreamBackPressure++;\n                            existingContext.zipper!.pause();\n                            this.once('drain', () =\u003e {\n                                downstreamBackPressure--;\n                                if (downstreamBackPressure === 0) {\n                                    existingContext.zipper!.resume();\n                                }\n                            });\n                        }\n                    });\n\n                    tagsStreamContext.set(tagId, existingContext);\n                }\n\n                if (existingContext.zipper.write(csvChunk) === false) {\n                    upstreamPressure++;\n                    existingContext.zipper.once('drain', () =\u003e {\n                        upstreamPressure--;\n                        if (upstreamPressure === 0) {\n                            callback();//This controls upstream flow\n                        }\n                    });\n                }\n            }\n            if (upstreamPressure === 0) {\n                callback();//This controls upstream flow\n            }\n\n        },\n\n        final(callback) {\n            const promiseHandles = [];\n\n            for (const [tagId, context] of tagsStreamContext) {\n                if (context.zipper !== null \u0026\u0026 context.zipper !== undefined) {\n                    promiseHandles.push(new Promise\u003cvoid\u003e((resolve, reject) =\u003e {\n                        context.zipper!.once('end', resolve);\n                        context.zipper!.once('error', reject);\n                        context.zipper!.end();\n                    }));\n                }\n            }\n\n            Promise.all(promiseHandles)\n                .then(() =\u003e { callback(); console.log('All zippers ended.'); })\n                .catch(err =\u003e callback(err));\n        }\n    });\n\n    const redisWriter = new Transform({\n        objectMode: true,\n        transform(chunk: Record\u003cstring, Buffer\u003e, encoding, callback) {\n            const promiseHandles = [];\n            for (const [tagId, zippedBufferChunk] of Object.entries(chunk)) {\n                const redisTempTagKey = `${redisTempKeyPartA}${tagId}`;\n\n                const existingContext = tagsStreamContext.get(tagId) ?? {} as TSplitStreamContext;\n                if (existingContext.redisTempKey == null || existingContext.redisTempKey == undefined) {\n                    existingContext.redisTempKey = redisTempTagKey;\n                    tagsStreamContext.set(tagId, existingContext);\n                }\n\n                promiseHandles.push(\n                    redisClient.multi()\n                        .append(redisTempTagKey, zippedBufferChunk)\n                        .pExpire(redisTempTagKey, redisTempStreamingTimeout)\n                        .exec()\n                )\n            }\n\n            Promise.allSettled(promiseHandles)\n                .then(() =\u003e callback())\n                .catch(err =\u003e callback(err));\n        },\n\n        final(callback) {\n            const promiseHandles = [];\n            for (const [tagId, info] of tagsStreamContext) {\n                promiseHandles.push(\n                    redisClient.multi()\n                        .rename(info.redisTempKey, tagId)\n                        .pExpire(tagId, expiryTimeInMilliseconds)\n                        .exec()\n                )\n            }\n\n            Promise.allSettled(promiseHandles)\n                .then(() =\u003e callback())\n                .catch(err =\u003e callback(err));\n        },\n    });\n\n    const fileWriter = new Transform({\n        objectMode: true,\n        transform(chunk: Record\u003cstring, Buffer\u003e, encoding, callback) {\n            for (const [tagId, zippedBufferChunk] of Object.entries(chunk)) {\n                appendFileSync(`./zipped/${tagId}.gz`, zippedBufferChunk, { flag: 'a' });\n            }\n            callback();\n        }\n    });\n\n    // const splitStreams = new Transform({\n    //     objectMode: true,\n    //     construct(callback) {\n    //         callback();\n    //     },\n    //     transform(tagWiseCSVChunks: Record\u003cstring, Buffer\u003e, encoding, callback) {\n\n    //         const tagIdVSChunkRecords = Object.entries(tagWiseCSVChunks);\n    //         let upstreamPressure = 0;\n    //         let downstreamBackPressure = 0;\n\n    //         for (const [tagId, csvChunk] of tagIdVSChunkRecords) {\n    //             const existingContext = tagsStreamContext.get(tagId) ?? {} as TSplitStreamContext;\n\n    //             if (Array.isArray(existingContext.downStream) === false || existingContext.downStream.length === 0) {\n    //                 existingContext.downStream = [new PassThrough({ objectMode: true }), createGzip(), createWriteStream(`./zipped/${tagId}.gz`, { flags: 'a' })];\n\n    //                 existingContext.zipper.on('data', (chunk: Buffer) =\u003e {\n    //                     if (this.push({ [tagId]: chunk }) === false) {\n    //                         downstreamBackPressure++;\n    //                         existingContext.zipper!.pause();\n    //                         this.once('drain', () =\u003e {\n    //                             downstreamBackPressure--;\n    //                             if (downstreamBackPressure === 0) {\n    //                                 existingContext.zipper!.resume();\n    //                             }\n    //                         });\n    //                     }\n    //                 });\n\n    //                 tagsStreamContext.set(tagId, existingContext);\n    //             }\n\n    //             if (existingContext.zipper.write(csvChunk) === false) {\n    //                 upstreamPressure++;\n    //                 existingContext.zipper.once('drain', () =\u003e {\n    //                     upstreamPressure--;\n    //                     if (upstreamPressure === 0) {\n    //                         callback();//This controls upstream flow\n    //                     }\n    //                 });\n    //             }\n    //         }\n    //         if (upstreamPressure === 0) {\n    //             callback();//This controls upstream flow\n    //         }\n    //     },\n    //     final(callback) {\n    //         redisWriter.end();\n    //         fileWriter.end();\n    //         callback();\n    //     }\n    // });\n\n    await pipeline(\n        inputFileStream,\n        csvStream,\n        rowAccumulator,\n        tagSegregationStream,\n        outputCSVStream,\n        zipStream,\n        fileWriter\n    );\n\n    tagsStreamContext.clear();\n}\n\nasync function mainModule() {\n    mkdirSync('./zipped', { recursive: true })\n    console.log('Computing...');\n    await streamTodo('./1.csv', 3600000, null as any);\n    // console.log('Unzipping...');\n    // await unzipGzFiles('./zipped');\n    // console.log('Comparing 03...');\n    // await compareCsvFiles('./1.csv', './zipped/0c6ad90b-e90d-40ac-a277-169c8024a003.gz', './zipped/diff_03.csv');\n    // console.log('Comparing 10...');\n    // await compareCsvFiles('./1.csv', './zipped/0c6ad90b-e90d-40ac-a277-169c8024a010.gz', './zipped/diff_10.csv');\n}\n\nmainModule()\n    .then(() =\u003e console.log('All operations completed successfully.'))\n    .catch(err =\u003e console.error('Error during operations:', err));\n\n```","author":{"url":"https://github.com/LRagji","@type":"Person","name":"LRagji"},"datePublished":"2025-12-29T08:02:50.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/61202/node/issues/61202"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:108c1e20-d8ae-52d2-0df8-497581755a1d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE9F0:1070C6:99C474:CEE753:6A4C4971
html-safe-noncef7c8ca30eeee5742e0f5d8e781459178ed49cde5dbe6b05e9fef332249f2aaab
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFOUYwOjEwNzBDNjo5OUM0NzQ6Q0VFNzUzOjZBNEM0OTcxIiwidmlzaXRvcl9pZCI6IjI0MzM5Njc4NTExNDYzMzI1MjkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac0dfde97061d7569e4be81ee4770aba864993887bd817df94c09084ce177679e1
hovercard-subject-tagissue:3766722937
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodejs/node/61202/issue_layout
twitter:imagehttps://opengraph.githubassets.com/a21a20240821d13b09b6371b09d05cab46827d79298f05fbc49ce3eaad9aa830/nodejs/node/issues/61202
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/a21a20240821d13b09b6371b09d05cab46827d79298f05fbc49ce3eaad9aa830/nodejs/node/issues/61202
og:image:altVersion v24.5.0 and even previous LTS version 22 Platform Tried both on MAC OS(M4 arm64) and Windows 11(Intel x64) Subsystem node:Zlib What steps will reproduce the bug? I am trying to use zlib ins...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameLRagji
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3996b3b83990e134be6c099ab9a7f48f140ae80f
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/issues/61202#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F61202
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F61202
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/issues/61202
Reloadhttps://github.com/nodejs/node/issues/61202
Reloadhttps://github.com/nodejs/node/issues/61202
Please reload this pagehttps://github.com/nodejs/node/issues/61202
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/issues/61202
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.4k https://github.com/nodejs/node/issues
Pull requests 967 https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Zlib Stream API corrupts data.https://github.com/nodejs/node/issues/61202#top
needs more infoIssues without a valid reproduction.https://github.com/nodejs/node/issues?q=state%3Aopen%20label%3A%22needs%20more%20info%22
https://github.com/LRagji
LRagjihttps://github.com/LRagji
on Dec 29, 2025https://github.com/nodejs/node/issues/61202#issue-3766722937
needs more infoIssues without a valid reproduction.https://github.com/nodejs/node/issues?q=state%3Aopen%20label%3A%22needs%20more%20info%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.