679 releases (68 stable)

new 27.0.3 Nov 8, 2025
26.0.1 Oct 29, 2025
25.0.0 Oct 20, 2025
24.0.3 Oct 2, 2025
0.5.4 Nov 26, 2018

#1052 in Parser implementations

Download history 330130/week @ 2025-07-22 228486/week @ 2025-07-29 239822/week @ 2025-08-05 245234/week @ 2025-08-12 216278/week @ 2025-08-19 169997/week @ 2025-08-26 193157/week @ 2025-09-02 184988/week @ 2025-09-09 192546/week @ 2025-09-16 191628/week @ 2025-09-23 210714/week @ 2025-09-30 198597/week @ 2025-10-07 180048/week @ 2025-10-14 323050/week @ 2025-10-21 378627/week @ 2025-10-28 348071/week @ 2025-11-04

1,253,565 downloads per month
Used in 399 crates (126 directly)

Apache-2.0

3MB
73K SLoC

EcmaScript/TypeScript parser for the rust programming language.

Features

Heavily tested

Passes almost all tests from tc39/test262.

Error reporting

error: 'implements', 'interface', 'let', 'package', 'private', 'protected',  'public', 'static', or 'yield' cannot be used as an identifier in strict mode
 --> invalid.js:3:10
  |
3 | function yield() {
  |          ^^^^^

Error recovery

The parser can recover from some parsing errors. For example, parser returns Ok(Module) for the code below, while emitting error to handler.

const CONST = 9000 % 2;
const enum D {
    // Comma is required, but parser can recover because of the newline.
    d = 10
    g = CONST
}

Example (lexer)

See lexer.rs in examples directory.

Example (parser)

#[macro_use]
extern crate swc_common;
extern crate swc_ecma_parser;
use swc_common::sync::Lrc;
use swc_common::{
    errors::{ColorConfig, Handler},
    FileName, FilePathMapping, SourceMap,
};
use swc_ecma_parser::{lexer::Lexer, Parser, StringInput, Syntax};

fn main() {
    let cm: Lrc<SourceMap> = Default::default();
    let handler =
        Handler::with_tty_emitter(ColorConfig::Auto, true, false,
        Some(cm.clone()));

    // Real usage
    // let fm = cm
    //     .load_file(Path::new("test.js"))
    //     .expect("failed to load test.js");
    let fm = cm.new_source_file(
        FileName::Custom("test.js".into()).into(),
        "function foo() {}",
    );
    let lexer = Lexer::new(
        // We want to parse ecmascript
        Syntax::Es(Default::default()),
        // EsVersion defaults to es5
        Default::default(),
        StringInput::from(&*fm),
        None,
    );

    let mut parser = Parser::new_from(lexer);

    for e in parser.take_errors() {
        e.into_diagnostic(&handler).emit();
    }

    let _module = parser
        .parse_module()
        .map_err(|mut e| {
            // Unrecoverable fatal error occurred
            e.into_diagnostic(&handler).emit()
        })
        .expect("failed to parser module");
}

Cargo features

typescript

Enables typescript parser.

verify

Verify more errors, using swc_ecma_visit.

Known issues

Null character after \

Because [String] of rust should only contain valid utf-8 characters while javascript allows non-utf8 characters, the parser stores invalid utf8 characters in escaped form.

As a result, swc needs a way to distinguish invalid-utf8 code points and input specified by the user. The parser stores a null character right after \\ for non-utf8 code points. Note that other parts of swc is aware of this fact.

Note that this can be changed at anytime with a breaking change.

This module expose tokens related to the swc_ecma_parser::lexer.

Unlike the tokens re-exported from swc_ecma_lexer, the token kinds defined in the swc_ecma_parser here are non-strict for higher performance.

Although it's marked as unstable, we can ensure that we will not introduce too many breaking changes. And we also encourage the applications to migrate to the lexer and tokens in terms of the performance.

Also see the dicussion https://github.com/swc-project/swc/discussions/10683

Dependencies

~8–20MB
~203K SLoC