Giter Site home page Giter Site logo

Comments (3)

mbostock avatar mbostock commented on May 3, 2024 2

d3-dsv is usable directly from Node, whether or not you choose to enable --experimental-modules. However, --experimental-modules still limits you to CommonJS interoperability with d3-dsv; you must either continue to use require to load d3-dsv, or import the entire d3-dsv module as the default export:

import d3Dsv from "d3-dsv";

This is because --experimental-modules is hamstrung: it will only load ES modules if the imported file has the extension .mjs, and its CommonJS interoperability is limited to loading the entire module as the default export.

Unlike most other ES module loaders, --experimental-modules does not observe the module entry point in the package.json. So with --experimental-modules you are still consuming d3-dsv’s UMD bundle as defined in the main entry point.

This limitation is why I recommend using @std/esm. Unlike --experimental-modules, @std/esm observes the module entry and allows you to consume ES modules using the standard .js file extension. It also provides better CommonJS interoperability, allowing you to import named symbols from CommonJS modules rather than being limited to the default imports.

from d3-dsv.

mbostock avatar mbostock commented on May 3, 2024

Please read my comment on the linked issue.

from d3-dsv.

dandv avatar dandv commented on May 3, 2024

Pardon me for being dim on this, but shouldn't d3-dsv want to be usable directly from Node, without having to import any other module? I'm new to --experimental-modules, but published one that can be used just like that after asking on SO how to provide both native ES6 modules and backwards CommonJS compatibility.

from d3-dsv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.