question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ReactAreaLights do not seem to work in a module bundler

See original GitHub issue
Description of the problem

basically, area lights do not work with npm/node module resolution, see:

simplified: https://codesandbox.io/s/three-fibre-userender-test-rohv5

raw threejs arealight demo: https://codesandbox.io/s/dreamy-platform-3jpim

why

all files under examples/jsm pull from ../../../build/three.module.js instead of three, which is arguably not correct. it will pull threejs two times in bundling systems that do not follow package.json:module (but “main” instead, which leads to build/three.js). it then creates two separate namespaces. uniforms.init() ends up writing to the wrong one.

solution

this is how a typical jsm file should look:

import {
	ClampToEdgeWrapping,
	DataTexture,
	FloatType,
	LinearFilter,
	NearestFilter,
	RGBAFormat,
	ShaderLib,
	UVMapping,
	UniformsLib
} from "three";

that’s how any other library works. i have never seen library that relies on a distro file - this has obvious pitfalls. i understand that this was made to make the html demos work, but imo this is a hack, and it now impacts production usage.

Three.js version
  • r107
Browser
  • Chrome
OS
  • macOS

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:50 (29 by maintainers)

github_iconTop GitHub Comments

2reactions
looeeecommented, Aug 15, 2019

I’m sure this is what you meant but just to be clear the cjs examples should be able to be used universally when bundling three.js in an application with any of these tools.

Well, yes, if you tell a tool to import a cjs file then it should do that. It’s also fine for tools to import cjs using import * as - it seems like that’s violation of the spec, but it’s very convenient and common.

But if there is ambiguity, then a tool should always default to the es6 module when using import and always default to cjs when using require. For example, import * as THREE from 'three' is ambiguous since it’s not telling the bundler exactly what file to use. But it’s using import so it should always choose three.module.js if available. If you want cjs via an import statement then you should have to specify it using import * as THREE from "three/build/three".

If a bundler doesn’t do this then you have a situation where this:

import * as THREE from "three";
import { OrbitControls } from "three/examples/jsm/controls/OrbitControls.js";

which is 100% correct es6 code, leads to wrong results. And that’s just crazy and frustrating.

The only thing I’d say is ‘wrong’ here is when a person or bundler uses cjs and es6 from the same npm package. Of course that’s still a relative statement and if it works in your project then great. But doing that is what’s causing all the confusion here. Since codesandbox is not a private app then it seems like they should be more responsible and at least warn people they are importing cjs even though an es6 module is available.

2reactions
gkjohnsoncommented, Aug 10, 2019

I’m using webpack with babel, react, three.js, and a variety of three.js example modules and I’m not seeing a any duplicate threejs bundles included. I set up two small example builds using rollup and parcel and both seemed to work just fine, as well.

if it would follow “main” or fetch three from source, you would have two threejs versions in the output and arealights would also not work.

Can you describe the setup you’re using such that the build process is using the build pointed to by package.json “main”? And by fetching from source do you mean pointing to the “src/Three.js” file? My experience is that the bundlers prioritize the “module” field over “main” so I wouldn’t expect that this would be a problem.

I expect that the solution won’t be to immediately change all the example scripts over to import from “three” because that would break quite a few things – maybe we can talk about solutions that afford both use cases instead?

Read more comments on GitHub >

github_iconTop Results From Across the Web

What is module bundler and how does it work? - Tan Li Hau
Examples of modern module bundlers (in no particular order) are: webpack, rollup, fusebox, parcel, etc. Module bundler is required because:.
Read more >
yushijinhun/three-minifier-webpack NPM
This plugin hasn't been fully tested, and may be UNSTABLE. Use with ... ReactAreaLights do not seem to work in a module bundler...
Read more >
You may not need a bundler for your NPM library
I have seen a couple threads on twitter where people complain about the difficulty with publishing NPM libraries or ask what starter kit ......
Read more >
Why to use module bundlers over ES6 module? - Stack Overflow
1 Answer 1 ... Current JS runtimes do not support ES6 modules. This seems confusing, since they are in the spec, but they...
Read more >
Let's learn how module bundlers work and then write one ...
js above), the goal of dependency resolution is to look for all of the dependencies of your code (other pieces of code that...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found