- Implemented Observer pattern to define a subscription mechanism to notify multiple objects about any events that happen to the object they’re observing,
- Implemented Facade pattern to create a simplified interface for interaction with store and observer;
- wrote UNIT-tests with using JEST;
- Implemented a class DOM containing methods for interaction with the DOM tree of the application;
- Implemented Router - classes required for navigation between application pages;
- Implemented store, which is an analogue of Redux for working with state;
export function $(selector) {
return new DOM(selector);
}