
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
wiki-plugin-graphviz
Advanced tools
This plugin, type: graphviz, extends the markup of the federated wiki.
# context for the filesystem
WIKIDIR=$HOME/workspace/wiki
PLUGDIR=$HOME/workspace/wiki-plugin-graphviz
# clean up the previous mess
# (This cleanup is distructive. Proceed with awareness.)
cd $WIKIDIR
git reset --hard # throws away local changes
rm -rf node_modules # throws away local libraries
npm install # reinstalls the declared libraries
# build the plugin into an NPM package
cd $PLUGDIR
npm version patch --force --no-git-tag-version
PKG=$(npm pack | tail -1)
mv $PKG $WIKIDIR
# install the plugin into a local copy of wiki
cd $WIKIDIR
npm install $PKG
# run wiki
node index.js --farm --data ./data --security_type=friends
# visit http://test.localhost:3000 to test the plugin revisions
npm version patch
TAG="v$(jq -r .version package.json)"
git push --atomic origin main "$TAG"
npm publish
MIT
FAQs
Federated Wiki - Graphviz Plugin
The npm package wiki-plugin-graphviz receives a total of 28 weekly downloads. As such, wiki-plugin-graphviz popularity was classified as not popular.
We found that wiki-plugin-graphviz demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.