const express = require("express")
const app = express()
const fs = require('fs')
const dotenv = require("dotenv")
dotenv.config()
app.get("/",(req,res) => {
res.send("hello hell!")
})`
app.listen(3000, () => {
console.log("project is ready!")
})
let Discord = require("discord.js")
client = new Discord.Client({intents: 32767})
client.on("ready", () => {
console.log(
logged in as ${client.user.tag})
the code
I tried changing the Intents but still its not working,Im a newbie i guess there are some mistakes in my explainings sorry!