{"library":"rollup-standalone","title":"rollup-standalone","description":"A standalone, browser-ready bundle of Rollup (v0.42.9), the JavaScript module bundler. This package provides Rollup as a single file with no external dependencies, suitable for use in browsers or environments without a module system. It wraps Rollup's API, allowing bundling without Node.js. Note that this is an older Rollup version (0.x), not compatible with modern Rollup plugins or configuration. The package is minimal with no recent updates.","language":"javascript","status":"deprecated","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-standalone"],"cli":null},"imports":["import rollup from 'rollup-standalone';","import rollup from 'rollup-standalone'; rollup.watch(options);","import rollup from 'rollup-standalone'; const bundle = await rollup.rollup(inputOptions);"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// Basic usage: bundle a module\nimport rollup from 'rollup-standalone';\n\nasync function bundle() {\n  const bundle = await rollup.rollup({ input: './src/main.js' });\n  const { output } = await bundle.generate({ format: 'iife', name: 'MyBundle' });\n  for (const chunk of output) {\n    console.log(chunk.code);\n  }\n}\n\nbundle().catch(err => console.error(err));","lang":"javascript","description":"Demonstrates building a module with rollup.standalone: creates a bundle and generates IIFE output.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}