
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
d3-bundler
Advanced tools
A Rollup-based bundler for D3 modules.
To install:
npm install -g d3-bundler
To use, define an ES6 module that imports the D3 code you need and defines the corresponding exports. For example, try this index.js:
export {
event,
select,
selectAll
} from "d3-selection";
Make sure you have the desired D3 modules installed:
npm install d3-selection
Build your bundle:
d3-bundler -o d3.js -- index.js
Or, minified:
npm install -g uglify-js
d3-bundler -o d3.js -- index.js && uglifyjs -c -m -o d3.min.js -- d3.js
Have a nice day!
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="d3.js"></script>
<script>
d3.select("body").append("h1").text("Hello, world!");
</script>
d3-bundler [options] -- [file]
The input file should be an ES6 module that defines your exports. See the examples. If not specified, it defaults to “index.js”.
Options:
Specify the path to the generated bundle file. Use “-” for stdout.
Specify the name of the output module. This determines the name of the exported global in certain output formats.
If true, keep external dependencies external. This enables the -f option, and is useful if you want to generate a CommonJS build or use a different bundler.
Specify the output format of the generated JavaScript. See Rollup for supported values. This can only be used when inlining external dependencies (i.e., without -x).
FAQs
A Rollup-based bundler for D3 modules.
We found that d3-bundler 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.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.