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

#91 in Web programming

Download history 947/week @ 2024-12-01 1326/week @ 2024-12-08 1059/week @ 2024-12-15 738/week @ 2024-12-22 856/week @ 2024-12-29 1739/week @ 2025-01-05 1220/week @ 2025-01-12 1204/week @ 2025-01-19 1573/week @ 2025-01-26 1673/week @ 2025-02-02 1715/week @ 2025-02-09 1607/week @ 2025-02-16 1571/week @ 2025-02-23 2060/week @ 2025-03-02 2089/week @ 2025-03-09 1822/week @ 2025-03-16

7,675 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