1137 gün önce npm discord.js modülü için fs ile command handler yapmak
sorusunu cevapladı.
const folders = fs.readdirSync("./commands/");
const commands = new Map();
for (const files of folders) {
const folder = fs.readdirSync(`./commands/${files}/`).filter(file => file.endsWith(".js");
for (const commands of folder) {
const command = require(`./commands/${files}/${commands}`);
commands.set(commands.name, commands)
};
};
bot.on("message", message => {
if (message.author.bot) return;
if (message.content.indexOf(prefix) !== 0) return;
const args = message.content.slice(prefix.length).trim().split(/ +/g);
const command = args.shift().toLowerCase();
const cmd = commands.get(command);
if (!cmd) return;
cmd.code(bot, message, args);
})
1248 gün önce İİS Local Hostunu Node JS İçin Kullanmak
sorusunu cevapladı.
const express = require('express')
const app = express()
app.get('/', function (req, res) {
res.send('Hello World')
})
app.listen(3000)
veya
// Require the framework and instantiate it
const fastify = require('fastify')({
logger: true
})
fastify.get('/', (request, reply) => {
reply.send({ hello: 'world' })
})
fastify.listen(3000, (err, address) => {
if (err) throw err
})
1248 gün önce Açılır menü hk
sorusunu cevapladı.
css kismina
.gizli{
display:none;
}
ekle sonra js kisminda
window.onclick = function(event) {
if (!event.target.matches(".btn")) {
var d = document.getElementById("ID ISMI")
d.classlist.togle("gizli")
}
tiklamadan once gorunmesini istemedigin eleman a gizli classini vermeyi unutma
1248 gün önce Websitesini uygulama olarak indirme
sorusunu cevapladı.
chrome web view kullanarak web siteni uygulama olarak indirte bilirsin
eger chrome web view i nasil kullanacagini bilmiyorsan kodular dan yapa bilirsin
1248 gün önce Uzantılı Resim Ekleme
sorusunu cevapladı.
node js ile server kurup yuklenen dosyayi fs gibi moduler ile yeni dosya olusturup icine aktara bilirsin