dumpling 0.1.0

A fast JavaScript runtime and bundler in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use runtime::{run_file, start_dev_server};
pub use bundler::{bundle, bundle_with_ts, bundle_with_splitting};
pub use package_manager::{install, init, run_script, uninstall, prune};
pub mod security;
pub mod code_splitting;

pub mod runtime;
pub mod bundler;
pub mod package_manager;
pub mod modules;
pub mod builtins;
pub mod error;
pub mod typescript;
pub mod es202x;
pub mod import_map;