Registry / web-framework / wiki-plugin-rollup

wiki-plugin-rollup

JSON →
library0.4.0jsnpmunverified

A plugin for Federated Wiki that aggregates computations across multiple wiki pages and compares results against stored rollups. Current stable version is 0.4.0, released under the federated wiki project. It requires Node.js >=20 and is part of the wiki-plugin ecosystem. Unlike general rollup tools, this is specific to Federated Wiki's distributed computation model.

npm install wiki-plugin-rollup
INSTALL
IMPORT
SIG · WIKI-PLUGIN-ROLLUP
W
wiki-plugin-rollup
web-frameworkjavascriptv0.4.0
Install
—
Import
—
Disk
—
Pass rate
0/ 6
Env Coverage0 / 6
glibc
18–22
musl
18–22
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18–223 runs
build_error
glibc
node 18–223 runs
build_error
Code
Verified usage

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

default
✓ import plugin from 'wiki-plugin-rollup'
✗ const plugin = require('wiki-plugin-rollup')
ESM-only package; CommonJS require is not supported.
type Plugin
✓ import type { Plugin } from 'wiki-plugin-rollup'
TypeScript types not explicitly exported; inferred from module.
plugin.rollup
✓ import plugin from 'wiki-plugin-rollup'; plugin.rollup(config)
✗ import { rollup } from 'wiki-plugin-rollup'
rollup is a method on the default export, not a named export.

Shows basic usage: import plugin, create config with pages and formula, call rollup method.

import plugin from 'wiki-plugin-rollup'; const config = { pages: ['Page1', 'Page2'], formula: 'sum' }; const result = plugin.rollup(config); console.log(result);
Debug
Known issues
breakingPackage uses ESM only; Node.js >=20 required. CommonJS require will throw ERR_REQUIRE_ESM.
fix
Use import syntax or upgrade Node.js >=20. For CommonJS, use dynamic import: const plugin = await import('wiki-plugin-rollup');
affects: 0.4.0
deprecatedNo deprecation notices in current version.
fix
None
affects: none
gotchaThe plugin expects specific page structure in Federated Wiki; non-compliant pages may cause runtime errors.
fix
Ensure pages contain expected computation data before calling rollup.
affects: *
Errors
Common errors & fixes
Error [ERR_REQUIRE_ESM]: require() of ES Module...
Using CommonJS require with ESM-only package on Node.js <20 or without --experimental-require-module flag.
fix
Switch to import syntax or use dynamic import: const plugin = await import('wiki-plugin-rollup');
Upgrade
Version history
0.4.0latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
14
Anthropic
1
OpenAI (training)
1
Resources
wiki-plugin-rollup — npm install wiki-plugin-rollup · libregistry