Life
Sites
-
Recent Posts
Log In
Categories
Category Archives: Angular
Simplifying WebSockets User Interface (UI) Clients with Happy Pub/Sub Patterns
A back-end WebSocket for live streaming data can typically offer subscriptions to data. Your client UI will typically have one connection to your back-end for all your subscriptions. The challenge becomes how to you handle many components in your UI … Continue reading
Using Duration in Typescript
I’m converting Java 8 code to Typescript. Java 8 introduced a great Duration class that uses ChronoUnit to specify units such as DAYS or HOURS. You then instantiate a duration using that: Duration.of(3, SECONDS); Duration.of(465, HOURS); Duration can then interact … Continue reading
Posted in Angular, Development, Technology, Typescript
Tagged angular, coding, development, duration, typescript
Leave a comment
Creating a new Angular Site on Google Firebase
Angular is a framework for creating front-ends for websites. Technically, the site is static from a web hosting perspective, meaning that in and of itself it does not have a database, but rather only serves static files from the web … Continue reading
Posted in Angular, Development, Technology, Web
Tagged angular, development, firebase, hosting, web
Leave a comment
Using JSONP in Angular 8
JSONP is one way to get around CORS when getting data from a REST service. It does require a callback feature on the part of the service, which isn’t readily clear in some of the blogs and samples online for … Continue reading