Giter VIP home page Giter VIP logo

Comments (10)

timfish avatar timfish commented on July 18, 2024 2

This can be reproduced with:

a.mjs

export const foo = "a"

b.mjs

export const foo = "b"

index.mjs

export * from './a.mjs'
export * from './b.mjs'

But we seem to be playing whack-a-mole with the ludicrous number of permutations ESM provides for exporting entities.

The Map isn't working to de-duplicate because the keys are derived from:

Buffer.from(modFile, 'hex') + Date.now() + randomBytes(4).toString('hex')
image

from import-in-the-middle.

timfish avatar timfish commented on July 18, 2024 1

Throwing is ok in some circumstances, but we'd rather not have any cases where registering the hook causes code to throw where it didn't before.

from import-in-the-middle.

gajus avatar gajus commented on July 18, 2024

Got to this error after tackling #59, for what it is worth.

from import-in-the-middle.

jsumners-nr avatar jsumners-nr commented on July 18, 2024

#53 was meant to solve this sort of issue. But we seem to be playing whack-a-mole with the ludicrous number of permutations ESM provides for exporting entities. I am quite open to suggestions here.

from import-in-the-middle.

bizob2828 avatar bizob2828 commented on July 18, 2024

It's worth noting this is failing at a higher level now in 4.40.1 of openai. However that release broke cjs exports, and someone logged this issue

npm i [email protected]
node --loader=import-in-the-middle/hook.mjs --input-type=module -e "import OpenAI from 'openai'; const a = new OpenAI();"
    let $OpenAI = $171467968826591576f6c.OpenAI
        ^

SyntaxError: Identifier '$OpenAI' has already been declared
    at ModuleLoader.moduleStrategy (node:internal/modules/esm/translators:167:18)
    at callTranslator (node:internal/modules/esm/loader:285:14)
    at ModuleLoader.moduleProvider (node:internal/modules/esm/loader:291:30)

from import-in-the-middle.

jpintoic avatar jpintoic commented on July 18, 2024

I'm trying to setup Sentry for Node.js (type: module) with the following guide https://docs.sentry.io/platforms/javascript/guides/express/install/esm/ wich recommends the --import command line option to import the instrument.js/.mjs file and can't at the moment due to this issue. I keep getting the Identifier '$Completions' has already been declared error. It seems they are using this package in their SDK.

from import-in-the-middle.

jpintoic avatar jpintoic commented on July 18, 2024

@timfish, looks promising!

from import-in-the-middle.

jsumners-nr avatar jsumners-nr commented on July 18, 2024

@timfish what is the expected "export" of:

index.mjs

export * from './a.mjs'
export * from './b.mjs'

Genuinely, I do not know what the export should be. Both a.mjs and b.mjs export a single foo symbol. So which one wins, b?

from import-in-the-middle.

timfish avatar timfish commented on July 18, 2024

Ok so I just tested Node without the loader and the behaviour depends on the import:

With:
a.mjs

export const foo = "a"

b.mjs

export const foo = "b"

duplicate.mjs

export * from './a.mjs'
export * from './b.mjs'

The following:

import * as e from './duplciate.mjs'

console.log('exports', e);

Results in:

exports [Module: null prototype] {  }

And this

import { foo } from './duplciate.mjs'

console.log('foo', foo);

Results in an error

import { foo } from '../fixtures/duplicate.mjs'
         ^^^
SyntaxError: The requested module '../fixtures/duplicate.mjs' contains conflicting star exports for name 'foo'
    at ModuleJob._instantiate (node:internal/modules/esm/module_job:131:21)
    at async ModuleJob.run (node:internal/modules/esm/module_job:213:5)
    at async ModuleLoader.import (node:internal/modules/esm/loader:316:24)
    at async loadESM (node:internal/process/esm_loader:34:7)
    at async handleMainPromise (node:internal/modules/run_main:66:12)

So I guess we need to mirror this behaviour?

from import-in-the-middle.

jsumners-nr avatar jsumners-nr commented on July 18, 2024

That makes sense for the presented replication. I think we should definitely throw an error in this case since it is clearly an unresolvable situation. However, we need to figure out how to replicate the allowed graph that the OpenAI module seems to be making use of, and determine a way to handle it appropriately.

The whack-a-mole game continues 🤣

from import-in-the-middle.

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.