about 1 month ago
- The Bahmni open-source hospital management system was began over nine years ago with a front end using AngularJS and an OpenMRS REST API. Rahul Ramesh wished to convert this to use a React + TypeScript front end with an HL7 FHIR API. In exploring how to do this modernization he...
9 months ago
- Frontend software development has evolved drastically over the last decade, transforming from simple static HTML pages to dynamic, interactive web applications. While the growth of the field has unlocked new possibilities, it has also introduced layers of complexity that,...
over 1 year ago
- A quick explainer about single-page applications are what they are good for....
about 2 years ago
- In Angular, Promises and Observables are both used for handling asynchronous operations, but they have some key differences in how they work and what they offer. Here are the main distinctions between the two: Primises Single Value: A Promise represents a single future value....
- I don’t know who needs to hear this. But your frontend and backend systems don’t need to be completely separate. I started anew side project recently. You know, one of things that allows me to tinker with new technology but will probably never be finished. I’m using Angular for...
- Programming frameworks can seem ubiquitous one day and disappear the next. Some hypotheses on why:API surface is too large. This is the most common reason frameworks fail. API surfaces naturally grow over time. Without a clear understanding of the problem space and diligent...
over 2 years ago
- @radekmieAbout · Blog · GitHub · RSS · TimelineBy Radosław Miernik · Published on 26 May 2023 · Comment on RedditTable of contentsIntroSome historyDrafting a planA different approachThe implementationFinal touchesOpen topicsClosing thoughtsIntroIf I had to pinpoint a single...
over 3 years ago
- If you want to learn a modern JavaScript framework like React or Angular, you better be familiar with the terminal! So many frameworks and tools assume that you're proficient with it, without ever explaining it. This blog post is your missing manual, covering all of the most...
- In angular 12, it is very simple to have the HTML of your component react to changes in the value of a single variable (or multiple variables). Although it is not that simple when you want to have your components HTML react to push/pop changes. Take the following component:...
- In remembrance of my first love. Your LTS came finally to an end. You retired on 31st December 2021. You will always have a special place in my heart. You arrived with great anticipation, Put the web dev world upside down; Model, View and Controller were in separation, Even...
about 4 years ago
- JS frameworks like Vue can give elements a unique key. In a list rendering they might be able to reuse these keyed list items, when the list is changing. The already created DOM nodes don’t need to be recreated. This is a great performance gain. But when a list changes and the...
about 10 years ago
- Demo https://jsbin.com/gutahovufe/1/edit?html,js,output Explanation Sometimes you need to execute code after your list has been rendered on the client side. // js angular.module('ngRepeatDemo', []) .controller('AppCtrl', function() { var vm = this; vm.alphabet = [ 'a', 'b', 'c',...
Rows per page