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.

0.3.3 : Cannot find module 'core-js/modules/es6.array.is-array'

See original GitHub issue

jimp 0.3.3 ubuntu 18

package.json:

{
  "name": "foo",
  "version": "0.0.1",
  "devDependencies": {
    "jimp": "0.3.3"
  }
}

app.js:

"use strict";
const jimp = require("jimp");

run it: node app.js

result is an error with: Error: Cannot find module 'core-js/modules/es6.array.is-array'

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:55 (2 by maintainers)

github_iconTop GitHub Comments

3reactions
johnnykramercommented, Aug 11, 2018

@hipstersmoothie @oliver-moran problem has been solved! npm i -s core-js@2.5.7 I’ve installed specific 2.5.7 core-js version and jimp works well 😃 core-js v3 throws error as above.

3reactions
hipstersmoothiecommented, Aug 11, 2018

Quick fix until next release:

yarn add @babel/polyfill
Read more comments on GitHub >

github_iconTop Results From Across the Web

Cannot find module 'core-js/core/array' - Stack Overflow
I deleted and re-installed node-modules, no luck. What I ended up having to do is rebuild the entire project including the Django components....
Read more >
Array.isArray() - JavaScript - MDN Web Docs
isArray () checks if the passed value is an Array . It does not check the value's prototype chain, nor does it rely...
Read more >
isarray - npm
Start using isarray in your project by running `npm i isarray`. ... Array#isArray for older browsers and deprecated Node.js versions.
Read more >
JavaScript Array isArray() Method - W3Schools
The isArray() method returns true if an object is an array, otherwise false . ... Array.isArray() is a static property of the JavaScript...
Read more >
isarray - npm Package Health Analysis - Snyk
Array #isArray for older browsers For more information about how to use this package see README · Ensure you're using the healthiest npm...
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