Dec 29, 2021Store NgRxStore A `store` is a state container, wich holds application’state. It’s built on a single, immutable data structure. As picture show below, store has 3 main concepts:Redux4 min readRedux4 min read
Jul 12, 2021Angular PipesIntroduction — `Angular Pipes` is a feature used to transform output in the template. We have angular built-in pipes and we can create our own custom pipes. More on `Angular Pipes` could be read here. Built-in pipes Angular provides `built-in pipes` for typical data transformations, including transformations for internationalization (i18n), which use locale information…Angular Pipe2 min readAngular Pipe2 min read
May 25, 2021Angular ServicesAngular services are singleton objects that get instantiated only once during the lifetime of an application. They contain methods that maintain data throughout the life of an application, i.e. data does not get refreshed and is available all the time. …Services2 min readServices2 min read
May 25, 2021Data transformersSchemas of the flow overview. Why we need to transform data ? To have uniformed data structure If we immediately use data from external (API) on our view component, every time API changes, we must modify on our component. So to facilitate maintenance and debug, we just modify data from…Transformers2 min readTransformers2 min read
May 25, 2021eslintESLint is a tool which make code more consistent to follow common code style. There is another tool called TSLint, but since 2019 it has been deprecated, and it's recommended to use ESLint. …Eslint2 min readEslint2 min read