ngx-transforms: 90 standalone Angular pipes that actually compose
The article discusses the release of ngx-transforms, a library featuring 90 standalone Angular pipes. It emphasizes the benefits of composing these pipes for data transformation in Angular templates. The author advocates for a cultural shift in how Angular developers utilize pipes, promoting them as a composable language for improved efficiency and clarity in code.
- ▪ngx-transforms is a standalone Angular pipe library with 90 pipes across 8 categories.
- ▪The library allows for direct import of individual pipes into components, enhancing modularity and reducing bundle size.
- ▪The author highlights the importance of composing pipes to simplify data transformations and improve code readability.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 966237) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Mofiro Jean Posted on May 17 ngx-transforms: 90 standalone Angular pipes that actually compose #angular #webdev #typescript #opensource I shipped a 90-pipe Angular library, and the thing I want to write about isn't the pipes themselves. It's what happens when you compose them. ngx-transforms is a standalone Angular pipe library - 90 pipes across 8 categories, lightweight and verified against Angular 17 / 19 / 21 in CI.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).