Vu4ll
|
intro.js
1
console.log('Hi, my name is Salih! I'm a backend developer. I enjoy working with Express.js, EJS, and Discord.js. ✨');
About
about.js
1
const aboutMe = {
2
background: "I'm a backend developer constantly trying to improve myself in the world of software.",
3
interests: "I enjoy working with Express.js, EJS, and Discord.js and develop projects in these areas.",
4
experience: "So far, I have developed web projects using different technologies on my own.",
5
philosophy: "I'm open to learning and love discovering new technologies."
6
};
Skills
skills.js
1
const skills = {
2
languages: ['EJS', 'HTML5', 'JavaScript'],
3
frameworks: ['Node.js', 'Express.js', 'Discord.js'],
4
databases: ['MongoDB'],
5
tools: ['VS Code', 'Git', 'Nginx', 'npm']
6
};
My Projects
MongoDB Bot
Simple usage examples for Mongoose (MongoDB) for Discord.js bots. This project is a starting point for those who want to learn to work with MongoDB.
Slash Handler
This project I developed for Discord bots allows command handling in a more organized and manageable way.

Simple Personal Website
A static personal website I developed for the Internet Programming course.
Contact
If you want to contact me or talk about a project, you can use the contact information below.
contact.js
1
const contactMe = async () => {
2
const response = await fetch('https://vu4ll.com.tr/api/contact');
3
const data = await response.json();
4
console.log('Contact info:', data);
5
// Feel free to reach me via email or social media ✨
6
};
7
contactMe();