15 releases (breaking)

0.11.0 Feb 6, 2025
0.10.0 Dec 13, 2024
0.9.0 Dec 8, 2024
0.7.0 Mar 2, 2024
0.1.1 Feb 21, 2021

#181 in Parser implementations

Download history 619/week @ 2024-12-21 871/week @ 2024-12-28 1786/week @ 2025-01-04 1253/week @ 2025-01-11 1170/week @ 2025-01-18 1568/week @ 2025-01-25 1622/week @ 2025-02-01 1722/week @ 2025-02-08 1609/week @ 2025-02-15 1495/week @ 2025-02-22 2141/week @ 2025-03-01 2073/week @ 2025-03-08 1992/week @ 2025-03-15 1979/week @ 2025-03-22 1852/week @ 2025-03-29 1615/week @ 2025-04-05

7,704 downloads per month
Used in 13 crates (7 directly)

MIT license

49KB
1K SLoC

yarn-lock-parser

ActionsStatus Crates.io

Easily parse yarn-lock files (v1 and v2).

Example

use std::{error::Error, fs};
use yarn_lock_parser::{parse_str, Entry};

fn main() -> Result<(), Box<dyn Error>> {
    let yarn_lock_text = fs::read_to_string("yarn.lock")?;
    let entries: Vec<Entry> = parse_str(&yarn_lock_text)?;

    println!("{:?}", entries);

    Ok(())
}

Documentation

Visit https://docs.rs/yarn-lock-parser/

Build

You will need cargo, the Rust package manager.

cargo build

Test

cargo test

Dependencies

~1–1.6MB
~33K SLoC