github-by-stars icon indicating copy to clipboard operation
github-by-stars copied to clipboard

Fixed Crashing Issue & Removed Redundant Import

Open chase-manning opened this issue 5 years ago • 0 comments

The app was crashing showing this error:

PS C:\Users\Si563011\Music\repositories\github-by-stars> npx nodemon index.js
[nodemon] 1.19.1
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node index.js`
C:\Users\Si563011\Music\repositories\github-by-stars\main.js:1
Error: Cannot find module 'worker_threads'
Require stack:
- C:\Users\Si563011\Music\repositories\github-by-stars\main.js
- C:\Users\Si563011\Music\repositories\github-by-stars\index.js
    at Object.<anonymous> (C:\Users\Si563011\Music\repositories\github-by-stars\main.js:1)
[nodemon] app crashed - waiting for file changes before starting...

Looking in main.js I saw that this import was not used.
After removing it, the app started working.

chase-manning avatar Nov 17 '20 00:11 chase-manning