1

I have seen several imports here: https://github.com/mbostock/d3/blob/master/src/svg/axis.js

If I try to search for documentation about how that may be made all the results I get are of the kind: "there is no import in Javascript". Example: How do I include a JavaScript file in another JavaScript file?

I am guessing it is a node.js thing, but I've seen require used and not import, so this may be a different framework or tool.

How is this possible? It looks quite cool. Thank you.

Community
  • 1
  • 1
Trylks
  • 1,458
  • 2
  • 18
  • 31

1 Answers1

2

D3 is indeed using NodeJS running a dev package named Smash that converts those import into concatenated files.

elclanrs
  • 92,861
  • 21
  • 134
  • 171