Unable to run code in production, code isnt running after build

╭─[asus] as himanshu in ~/Projects/cfc-dc-bot-1 using node v23.7.0 on (discord.js)✘✘✘ 00:08:39
╰─(˚Д˚)ノ npm run start

> cfc-dc-bot@1.0.0 start
> NODE_ENV=production node build/index.js

Failed to initialize bot: Error: ENOENT: no such file or directory, scandir '/home/himanshu/Projects/cfc-dc-bot-1/build/core/events'
at Object.readdirSync (node:fs:1581:26)
at ExtendedClient.<anonymous> (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:119:47)
at Generator.next (<anonymous>)
at /home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:41:71
at new Promise (<anonymous>)
at __awaiter (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:37:12)
at ExtendedClient.loadEvents (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:114:16)
at ExtendedClient.<anonymous> (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:61:28)
at Generator.next (<anonymous>)
at /home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:41:71 {
errno: -2,
code: 'ENOENT',
syscall: 'scandir',
path: '/home/himanshu/Projects/cfc-dc-bot-1/build/core/events'
}
╭─[asus] as himanshu in ~/Projects/cfc-dc-bot-1 using node v23.7.0 on (discord.js)✘✘✘ 00:08:39
╰─(˚Д˚)ノ npm run start

> cfc-dc-bot@1.0.0 start
> NODE_ENV=production node build/index.js

Failed to initialize bot: Error: ENOENT: no such file or directory, scandir '/home/himanshu/Projects/cfc-dc-bot-1/build/core/events'
at Object.readdirSync (node:fs:1581:26)
at ExtendedClient.<anonymous> (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:119:47)
at Generator.next (<anonymous>)
at /home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:41:71
at new Promise (<anonymous>)
at __awaiter (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:37:12)
at ExtendedClient.loadEvents (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:114:16)
at ExtendedClient.<anonymous> (/home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:61:28)
at Generator.next (<anonymous>)
at /home/himanshu/Projects/cfc-dc-bot-1/build/core/client.js:41:71 {
errno: -2,
code: 'ENOENT',
syscall: 'scandir',
path: '/home/himanshu/Projects/cfc-dc-bot-1/build/core/events'
}
- [email protected] - nodejs v23.7.0
4 Replies
d.js toolkit
d.js toolkit3w ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by OP
Nano Chad
Nano ChadOP3w ago
{
"compilerOptions": {
"target": "es2016",
"module": "CommonJS",
"rootDir": "./src",
"resolveJsonModule": true,
"outDir": "./build",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"useUnknownInCatchVariables": false,
"skipLibCheck": true
},
"include": [
"./src/**/*"
]
}
{
"compilerOptions": {
"target": "es2016",
"module": "CommonJS",
"rootDir": "./src",
"resolveJsonModule": true,
"outDir": "./build",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"useUnknownInCatchVariables": false,
"skipLibCheck": true
},
"include": [
"./src/**/*"
]
}
here is my tsconfig
duck
duck3w ago
your error message seems straightforward enough furthermore reading directories isn't really something you do with discord.js, so this seems better suited to #other-js-ts
Nano Chad
Nano ChadOP3w ago
done

Did you find this page helpful?