Visual Studio Code – portfolio (Workspace)
{
  author: "Yusuf Emir Karakavak",
  role: "Backend Developer",
  location: "İzmir",
  stack: ["Node.js", "Express", "NestJS", "MongoDB", "Jest", "TypeScript"],
  familiar: ["Vue", "CI/CD", "Docker", "HTML", "CSS", "Bootstrap", "PHP", "CodeIgniter"]
}
Node.js Express RESTful API Git
export const aboutMe = {
  name: "Yusuf Emir Karakavak",
  bio: "API tasarlayan, performansa takık bir Node.js geliştirici.",
  interests: ["Clean Architecture", "CI/CD", "Testing"],
  links: {
    github: "https://github.com/emirkarakavak",
    linkedin: "https://www.linkedin.com/in/yusuf-emir-k-913a421a8"
  }
}
type Project = { name: string; desc?: string; tech: string[]; link?: string }
const projects: Project[] = [
  { name: "helpdesk", desc: "Kapsamlı site kullanım rehberi/Yönetim paneli", tech: ["Node", "Express", "MongoDB", "Vue"] },
  { name: "realtime-donate-system", desc: "Yayıncılar ve izleyicileri buluşturan interaktif yayın yazılımı.", tech: ["NodeJS", "MongoDB", "RabbitMQ", "AWS S3", "SocketIO"] },
  { name: "ai-based-chatbot", desc: "Operatöre bağlanmadan kullanıcı sorunlarını çözebilen yapay zeka destekli destek sistemi.", tech: ["NodeJS", "MongoDB", "OpenAI", "JWT"] },
  { name: "stats", desc: "Gerçek zamanlı site istatistiklerini yöneticilere raporlayan panel." },
  { name: "fun-center", desc: "Kullanıcıların sipariş sürecinde vakit geçirebileceği mini oyun platformu." },
  { name: "topupcenter", desc: "Global ölçekte sanal (e-pin) ürünlerinin satış platformu." },
  { name: "pricebot", tech: ["NodeJS", "MongoDB", "Puppeteer", "ChartJS", "SocketIO"] },
]
function sendMail(name: string, email: string, message: string){
  return `POST /api/contact { name, email, message }`
}

{
  "theme": "vscode-dark-plus",
  "accentColor": "#3794ff",
  "showExplorerOnMobile": true
}