class Developer {
constructor() {
this.name = "Ridwan";
this.alias = "codewithwan";
this.role = "Fullstack Developer";
this.languageSpoken = ["en_US", "code"];
this.currentlyExploring = "Microservices Architecture";
}
sayHi() {
console.log("Thanks for dropping by! Let's build something epic together!");
}
workWith() {
return {
frontEnd: {
frameworks: ["React", "Next.js"],
styling: ["Tailwind CSS"],
state: ["Redux", "Context API"],
},
backEnd: {
js: ["Node.js", "Express", "NestJS"],
php: ["Laravel"],
},
devOps: ["Docker", "Nginx", "GitHub Actions"],
architecture: ["Microservices", "Event-Driven", "RESTful APIs"]
};
}
}
// Initialize
const ridwan = new Developer();
ridwan.sayHi();codewithwan/codewithwan
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|