Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using DOM.js library kills console.log #7610

Open
1 of 17 tasks
jht9629-nyu opened this issue Mar 7, 2025 · 9 comments
Open
1 of 17 tasks

Using DOM.js library kills console.log #7610

jht9629-nyu opened this issue Mar 7, 2025 · 9 comments

Comments

@jht9629-nyu
Copy link

jht9629-nyu commented Mar 7, 2025

Most appropriate sub-area of p5.js?

  • Accessibility
  • Color
  • Core/Environment/Rendering
  • Data
  • DOM
  • Events
  • Image
  • IO
  • Math
  • Typography
  • Utilities
  • WebGL
  • Build process
  • Unit testing
  • Internationalization
  • Friendly errors
  • Other (specify if possible)

p5.js version

p5.js/1.11.1

Web browser and version

133.0.6943.127 (Official Build) (arm64)

Operating system

macosx

Steps to reproduce this

Steps:

  1. open https://editor.p5js.org/jht9629-nyu/sketches/VY-KQxJkA
  2. run
  3. error appears in console:
  4. "RangeError: Maximum call stack size exceeded"
  5. comment out DOM.js include in index.html
  6. run script and console now shows expected messages

-Also logged as issue on DOM.js:

Snippet:

// https://editor.p5js.org/jht9629-nyu/sketches/VY-KQxJkA
// DOM.js console.log bug
// run this sketch and get error:
//   "RangeError: Maximum call stack size exceeded"
// disable DOM.js include and console.log works
//
function setup() {
 console.log('in setup');
}

function draw() {
 console.log('in draw'); 
}

console.log('pre setup');

index.html scripts

    <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.11.1/p5.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.11.1/addons/p5.sound.min.js"></script>
    <script src="https://cdn.jsdelivr.net/gh/lenincompres/DOM.js@latest/DOM.js"></script>
@jht9629-nyu
Copy link
Author

@mennatawfiq
Copy link

I'm willing to work on this issue. Can it be assigned to me?

@jht9629-nyu
Copy link
Author

jht9629-nyu commented Mar 9, 2025

Wonderful!
Lenin has create a elegant library to do dynamic DOM
I'm eager to get it to work with console.log in this test p5js sketch:

// https://editor.p5js.org/jht9629-nyu/sketches/IrJGEcCs1
// test drive DOM.js v12

Please contact me if you need any help debugging.

@mennatawfiq
Copy link

Sorry but I didn't understand what did you mean with getting the dynamic DOM library to work with console.log?

@jht9629-nyu
Copy link
Author

jht9629-nyu commented Mar 9, 2025 via email

@mennatawfiq
Copy link

Hi again,
In order to find a way to test my changes -before I make it-, I tried to make a javascript file that has the code that highlights the issue and an HTML file that includes the js file with my p5.js library clone. When I tried to open the HTML file in the browser it didn't give the error that appears when we run the code on the online p5 editor. So now I have an initial solution for the issue but I don't know how to test it. Any help?

@jht9629-nyu
Copy link
Author

jht9629-nyu commented Mar 12, 2025 via email

@mennatawfiq
Copy link

mennatawfiq commented Mar 12, 2025

I've just known how to test my local copy of p5 on the online editor and yes I can tell that the problem isn't in the library, it may be in the editor.
BTW, I have the editor locally on my machine too, and when I try to run the attached code on it, it doesn't give the error that appears on the online editor. I'm not sure if this note is important but I prefer to share it.

@jht9629-nyu
Copy link
Author

Here is issue log as error on p5js editor issues:
processing/p5.js-web-editor#3386

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants