When I do my Command nodemon src/index.js it comes out saying clean exit - waiting for changes before restart...
I tried changing my code a bunch of times and i expected the last message saying "[nodemon] starting node src/index.js
" and nothing more.
here is my code:
const { Client, IntentsBitField} = require('discord.js');
const client = new Client({
intents: [
IntentsBitField.Flags.Guilds,
IntentsBitField.Flags.GuildMembers,
IntentsBitField.Flags.GuildMessages,
IntentsBitField.Flags.MessageContent,
]
});
client.login(Ain't gonna show you this');