Registry / devops / quasiculpa

quasiculpa

JSON →
library1.2.2jsnpmunverified

quasiculpa is a blazing fast, zero configuration web application bundler for JavaScript and TypeScript. Version 1.2.2 targets Node >=10, with a focus on rapid bundling without config files. It supports ES modules, CommonJS, and code splitting out of the box. Unlike Webpack or Parcel, it emphasizes minimal setup and fast rebuilds using caching. Released monthly with incremental features and bug fixes.

npm install quasiculpa
INSTALL
IMPORT
SIG · QUASICULPA
Q
quasiculpa
devopsjavascriptv1.2.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

bundle
import { bundle } from 'quasiculpa';
Default export is not available; use named import.
watch
import { watch } from 'quasiculpa';
const watch = require('quasiculpa').watch;
CommonJS require is supported but ESM is preferred.
BuildOptions
import type { BuildOptions } from 'quasiculpa';
import { BuildOptions } from 'quasiculpa';
TypeScript users should use `import type` for interfaces.

Shows basic bundling of an entry point to a single output file with minification.

import { bundle } from 'quasiculpa'; const result = await bundle({ entry: './src/index.js', outfile: './dist/bundle.js', minify: true, }); console.log('Built in', result.duration, 'ms');
Debug
Known issues
breakingv2.0 removed the `legacy` option; use `target` instead.
fix
Replace `legacy: true` with `target: 'es2015'` in your config.
affects: >=2.0.0
deprecatedThe `--compress` CLI flag is deprecated; use `--minify` instead.
fix
Replace `--compress` with `--minify` in CLI commands.
affects: >=1.0.0
gotchaPlugin order matters; plugins are applied in reverse order.
fix
List plugins in the order you want them applied (last plugin runs first).
affects: >=1.0.0
Errors
Common errors & fixes
Error: Cannot find module 'quasiculpa'
Package not installed or not in node_modules.
fix
npm install quasiculpa
TypeError: bundle is not a function
Default import used instead of named import.
fix
Use `import { bundle } from 'quasiculpa'` (curly braces).
Error: Unsupported node version: 8.x.x
Node version is below minimum requirement (10.0.0).
fix
Upgrade Node to >=10.0.0 using nvm or installer.
Upgrade
Version history
1.2.2latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
quasiculpa — npm install quasiculpa · libregistry