D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jasondavies
Full window
Github gist
RequireJS and D3
<!DOCTYPE html> <meta charset="utf-8"> <style> body { font-family: sans-serif; } </style> <body> <script src="require.js"></script> <script> require.config({ paths: { d3: "https://d3js.org/d3.v3.min" } }); require(["d3"], function(d3) { d3.select("body").append("h1").text("Successfully loaded D3 version " + d3.version); }); </script>