github-by-stars
github-by-stars copied to clipboard
Fixed Crashing Issue & Removed Redundant Import
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.