Jose Gabrielle Rivera
jgrivera.dev

jgrivera.dev

Follow
homeResume
Tag

JavaScript

#javascript

More content

Read more stories on Hashnode


Articles with this tag

Work with ES Modules in Jest using Babel

Aug 9, 20223 min read

The notion of transpilation. ยท Foreword I recently worked with a npm package that is an ES Module. Looking at the library's package.json, it has module...

Work with ES Modules in Jest using Babel

Factory pattern for singleton values using the Map data structure

Nov 22, 20213 min read

Foreword The factory pattern is a creational pattern that usually makes use of conditional statements such as if and switch. Today, we will be...

Factory pattern for singleton values using the Map data structure

Clean constructor dependency injection by using a proxy object

Nov 19, 20213 min read

Foreword This is a refactoring approach that I did when I faced a problem with redundant code brought by dependency injection. I had an abstract class...

Clean constructor dependency injection by using a proxy object