{"library":"primitive-script-bundler","title":"Primitive Script Bundler","description":"A minimal JavaScript bundler inspired by Webpack, designed for simple projects that need to concatenate multiple script files into a single bundle. Version 1.0.16 is the latest stable release, with infrequent updates. Unlike Webpack or Rollup, it offers no module resolution, tree-shaking, or code splitting; it simply concatenates files in order. Suitable for small hobby projects but not for production use. Not actively maintained.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install primitive-script-bundler"],"cli":{"name":"primitive-script-bundler","version":null}},"imports":["const bundle = require('primitive-script-bundler');","// No explicit import, uses config.json in project root","bundle();"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// config.json\n{\n  \"files\": [\"src/a.js\", \"src/b.js\"],\n  \"output\": \"dist/bundle.js\"\n}\n\n// index.js\nconst bundle = require('primitive-script-bundler');\nbundle();","lang":"javascript","description":"Shows how to configure files and output path via config.json and run the bundler.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}