Skip to content
Advertisement

Property ‘noise’ does not exist on type ‘typeof @types/p5/index”‘

I was humming along in a TypeScript Data Viz project and thought I’d use the p5.js noise function to save some time. Instead I’ve encountered a problem that I can’t fully understand. There seems to be something different with the p5 module compared to d3 and three.js I’m using in the project. Breaking it down to the very basic elements, I need some help interpreting what’s going on with this module.

JavaScript

If I try to use the function directly I get a different error.

JavaScript

I dug down into the node_modules and confirmed everything is there. Researching the problem, I noticed other packages had this same error, but all the offered solutions were very specific to the package and project, and when applied did not fit my issue or resolve my problem. I suspect this has something to do with global.d.ts file but nothing looked out of place when I looked. If there are any suggestions on what is happening I will take them.

JavaScript

Advertisement

Answer

If you must run p5.js functions in a Node.js application written in typescript, here’s one way to do it:

  1. Add npm dependencies: p5, window, canvas
  2. Add npm devDependencies: @types/p5
  3. Inject certain JSDOM window properties into the global scope: window, document, screen, navigator

Note: This works for the noise function, but I have no idea what the behavior of any functions that actually attempt to create or draw to a canvas would be.

Here’s a working example in Repl.it.

Here’s my package.json:

JavaScript

And here’s my main.ts:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement