JavaScript and CSS bundler using Vite.
# Using npm
npm install --save rucksack
# Using yarn
yarn add rucksackimport Rucksack from "rucksack"
const __dirname = new URL(".", import.meta.url).pathname;
// Create a new bundler
let bundler = new Rucksack({
name: "my-app",
bundle_dir: `${__dirname}/output`,
bundle_url: "/static",
input: `${__dirname}/js-and-css-with-assets/main.js`,
production: true,
watch: false
})
// Add remote url as resource
bundler.add("https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js")
bundler.bundle();
console.log(bundler.html())Creates a new instance of Rucksack.
- Object
options: The options object:name(String): The bundle name.bundle_dir(String): The bundle directory.bundle_url(String): The bundle URL.input(String): The input file.aliases(Object): A map of aliases for module resolution.production(Boolean): Whether to bundle for production.watch(Boolean): Whether to watch files for changes.
- Object The Rucksack instance containing:
options(Object): The options object.bundle_paths(Object): The bundle paths:js(String): The JS bundle path.css(String): The CSS bundle path.
bundle_urls(Object): The bundle URLs:js(String): The JS bundle URL.css(String): The CSS bundle URL.
local(Object): The local resources collection.js(Array): The JS resources.css(Array): The CSS resources.
remote(Object): The remote resources collection.js(Array): The JS resources.css(Array): The CSS resources.
markup(Object): The cached HTML markup:js(String): The JS HTML markup.css(String): The CSS HTML markup.all(String): The combined HTML markup.
Bundles JavaScript files using Vite.
- Promise A promise that resolves when the JavaScript bundling is complete.
There are few ways to get help:
- Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
- For bug reports and feature requests, open issues. π
Have an idea? Found a bug? See how to contribute.
