dumpling 0.1.0

A fast JavaScript runtime and bundler in Rust
Documentation
console.log("Hello, Dumpling!");

// Example of importing a local module
try {
  const utils = require("./utils");
  console.log("Utils module loaded:", utils.add(2, 3));
} catch (e) {
  console.log("Utils module not found, skipping...");
}

// Example of importing from node_modules (if installed)
try {
  const _ = require("lodash");
  console.log("Lodash version:", _.VERSION);
} catch (e) {
  console.log("Lodash not installed, skipping...");
}

// Example of ES6 import syntax would work with bundler
// import { greet } from './greeting.js';
// console.log(greet('World'));