Reduce npm lockfile parsing allocations - #95
Open
andrew wants to merge 2 commits into
Open
Conversation
There was a problem hiding this comment.
🟡 Changes recommended
An unresolved CRLF parsing bug can produce duplicate dependencies.
Get a fresh assessment by requesting another Copilot review.
Pull request overview
Reduces allocations in npm lockfile parsing while preserving parsing behavior, with added benchmarks and regression coverage.
Changes:
- Preallocates dependency results for v1 parsing.
- Uses iterator-based line parsing for v2/v3.
- Adds allocation benchmarks and edge-case tests.
File summaries
| File | Summary |
|---|---|
npm_bench_test.go |
Adds large-lockfile benchmarks. |
npm_allocation_test.go |
Adds allocation and parsing regression tests. |
internal/npm/npm.go |
Optimizes parsing; requires CRLF section termination handling to avoid duplicate dependencies. |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 1
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Preallocate the dependency slice when parsing npm lockfiles and iterate v2/v3 lines without allocating a slice of every line. For lockfiles with 10,000 packages, this reduces allocated bytes by 41% for v1 and 45% for v3.
Also fix duplicate dependencies when parsing v2 lockfiles with CRLF line endings: stop at the end of
packagesinstead of continuing into the legacydependenciessection.