
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.
component2duo
Advanced tools
convert your component app into duo app
Duo doesn't have any concept of local components.
This tool rewrites your require paths for local components by
analyzing your root component and all your locals and scripts which are listed in your component.json files.
paths arraypaths is used.scripts property of your component.json files are analyzednpm install component2duo
var Converter = require('component2duo');
var c = new Converter('rootComponentPath', Converter.ABSOLUTE, {simulate:true});
var result = c.start();
console.log(result);
start(), default falsecomponent.jsonConverter.ABSOLUTE will rewrite require paths relative to the root component with a leading slash, for instance: /lib/local.
Converter.RELATIVE will rewrite require paths relative to each local component, for instance: ../local.
node_modules/.bin/component2duo ~/myApp/component.json 0 true
Assume you have this directory structure
myApp
├── component.json
└── lib
├── bar
│  ├── component.json
│  ├── index.js
│  └── qux.js
└── foo
├── component.json
├── index.js
├── script.js
└── sub
└── baz.js
Your root component is located at myApp/component.json with this content:
{
"name": "myApp",
"paths": ["lib"],
"locals": ["foo"]
}
myApp/foo/component.json:
{
"locals": ["bar"],
"scripts": [
"index.js",
"script.js",
"sub/baz.js"
],
"main": "index.js"
}
With component you can write require('bar') in the scripts of foo.
With this tool you can choose if you want to rewrite it into an absolute require('/lib/bar') or relative require('../bar') path.
If you checkout this project (and make a npm install) you can run:
$ ./bin/cli test/fixtures/simple/component.json 0 true
then you get this result:
lib/foo/script.js: 'bar' -> '/lib/bar'
lib/foo/script.js: 'bar/qux' -> '/lib/bar/qux'
git clone https://github.com/timaschew/component2duo.git
cd component2duo
npm install
npm test
Currently I'm not using any generator functions, but I will, so currently just ignore the build-generator directory. If you don't want use CoffeeScript you can use the build/index.js.
FAQs
convert your component project into a duo project
The npm package component2duo receives a total of 1 weekly downloads. As such, component2duo popularity was classified as not popular.
We found that component2duo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.