Summary
I am actively developing in the direction of FrontEnd development and have experience in SPA websites
development based on a modern frameworks (Angular CLI, ReactJS, NextJS). There are also skills in
working with Oracle SQL and MongoDB. Excellent understanding of the software development lifecycle. Have
good communication skills.
Skills
My skills | Level (0-9) |
---|---|
HTML/CSS, HTML5/CSS3 | 8 |
JavaScript | 8 |
Angular v.16-20 | 7 |
TypeScript | 7 |
RxJs | 6 |
NgRx | 6 |
GitHub, GitLab, Bitbucket | 8 |
Figma, Zeplin, Photoshop | 8 |

Experience
- HTML/CSS (Suits & Landing pages)
- JavaScript (practice)
- Angular (practice)
- Planer Link
- Commercial projects



Education
- Epam Training Center (11.2020-03.2021) - certificate
- GeekBrains courses
- HTML/CSS - certificate
- HTML5/CSS3 - certificate
- JavaScript - certificate
- Udemy courses
- React - The Complete Guide 2025 (incl. Next.js, Redux) - certificate
- JavaScript Unit Testing - The Practical Guide - certificate
- Cypress End-to-End Testing - Getting Started - certificate

English
A2-B1
Code
async function parseXML(filePath) {
try {
// Читаем XML файл
const xmlData = fs.readFileSync(filePath, 'utf8');
// Создаем новый парсер
const parser = new xml2js.Parser({
explicitArray: false, // Отключает создание массивов для одиночных элементов
trim: true // Удаляет пробелы
});
// Парсим XML
const result = await parser.parseStringPromise(xmlData);
return result;
} catch (error) {
console.error('Ошибка при парсинге XML:', error);
throw error;
}
}