Akram
Zaitout
Full Stack Developer
Full Stack Software Developer and Data Scientist with over five years of hands-on experience building scalable web platforms. I combine deep frontend and backend expertise with AI-driven problem solving to deliver production-ready architectures that transform complex ideas into high-performance digital solutions.
Get in Touch
developer.controller.ts
1
@Controller('developer')
2
export class DevController {
3
private readonly stack = [
4
'Laravel', 'NestJS', 'Vue', 'Nuxt'
5
];
6
public getProfile() {
7
return {
8
name: 'Akram Zaitout',
9
skills: this.stack
10
};
11
}
12
}