How to Fetch Data with React Hooks
Not sure how we missed this before, but it’s still a great tutorial now and uses Hacker News APIs as the back-end guinea pig. - http://amp.gs/NtDH
#react
Not sure how we missed this before, but it’s still a great tutorial now and uses Hacker News APIs as the back-end guinea pig. - http://amp.gs/NtDH
#react
www.robinwieruch.de
How to fetch data with React Hooks? - RWieruch
A tutorial on how to fetch data in React with Hooks from third-party APIs. You will use state and effect hooks for the data request from a real API ...
How to Create and Run Scheduled Jobs in Node cron-Style
How to use node-cron to get cron-like scheduling functionality within a Node app - http://amp.gs/NmXs
#nodejs
How to use node-cron to get cron-like scheduling functionality within a Node app - http://amp.gs/NmXs
#nodejs
Understanding RxJS Observables and Why You Need Them
RxJS is a reactive programming library based around ‘observables’ and is used by Angular for its reactivity.. but you can use it separately too. - http://amp.gs/Np1b
#rxjs
RxJS is a reactive programming library based around ‘observables’ and is used by Angular for its reactivity.. but you can use it separately too. - http://amp.gs/Np1b
#rxjs
LogRocket Blog
Understanding RxJS Observables and why you need them - LogRocket Blog
In this post, we will see a thorough introduction to Observables, observers and subscriptions in RxJS in addition to the lifecycle process.
Getting Started Optimizing a React Native App
A developer who has spent a serious amount of time optimizing a bank’s mobile app shares several (very) quick tips based on what he learnt along the way. - http://amp.gs/NpsR
#reactnative
A developer who has spent a serious amount of time optimizing a bank’s mobile app shares several (very) quick tips based on what he learnt along the way. - http://amp.gs/NpsR
#reactnative
Medium
Getting Started Optimizing a React Native App
Optimizing an app can be very complex. I’ve worked for a year optimizing one of the largest banks mobile apps performance. We ended up…
Future-Oriented Programming with Vue.js 3
One of Vue.js 3’s forthcoming new features is support for a function-based API (more on what that means in this podcast). Here’s a look at what problems it’ll solve and how it’ll improve logic composition. - http://amp.gs/NBv1
#vue
One of Vue.js 3’s forthcoming new features is support for a function-based API (more on what that means in this podcast). Here’s a look at what problems it’ll solve and how it’ll improve logic composition. - http://amp.gs/NBv1
#vue
Medium
Vue.js 3: Future-Oriented Programming
How function-based API solves logic reusability problem
Using Async Generator Functions in JavaScript
Async generator functions are special because you can use both await and yield in them, but what are the practical uses? - http://amp.gs/NnNy
#javascript
Async generator functions are special because you can use both await and yield in them, but what are the practical uses? - http://amp.gs/NnNy
#javascript
The Code Barbarian
Async Generator Functions in JavaScript
JavaScript has generator functions and async functions, so why does it need async generator functions? Here's how async generator functions work and why you should care.
Building Mobile Apps With Ionic And React
Ionic now supports React and this tutorial shows how to use Ionic and React to build a mobile app from scratch. - http://amp.gs/NGK1
#ionic #react
Ionic now supports React and this tutorial shows how to use Ionic and React to build a mobile app from scratch. - http://amp.gs/NGK1
#ionic #react
Smashing Magazine
Building Mobile Apps With Ionic And React — Smashing Magazine
React developers can get the advantages of Ionic to build hybrid mobile apps and progressive web apps. In this tutorial, we’ll be using Ionic and React to build a mobile app from scratch.
JavaScript and Node Testing Best Practices
Almost 50 best practices divided into categories (backend, frontend, CI, etc.) complete with code examples. Not just the basics, it digs into areas like visual regression, property-based testing, and contract testing, too - http://amp.gs/NxJb
#nodejs
Almost 50 best practices divided into categories (backend, frontend, CI, etc.) complete with code examples. Not just the basics, it digs into areas like visual regression, property-based testing, and contract testing, too - http://amp.gs/NxJb
#nodejs
GitHub
goldbergyoni/javascript-testing-best-practices
📗🌐 🚢 Comprehensive and exhaustive JavaScript & Node.js testing best practices (January 2021) - goldbergyoni/javascript-testing-best-practices
Asynchronous Modules and Components in Angular Ivy
Ivy is the code name for Angular’s next-generation compilation and rendering pipeline. - http://amp.gs/NfXd
#angular
Ivy is the code name for Angular’s next-generation compilation and rendering pipeline. - http://amp.gs/NfXd
#angular
Which Is Best: A Loyalty Program PWA or Mobile App?
How to decide which format to use when a client asks you to design the mechanism for their loyalty program. - http://amp.gs/NC5J
#pwa #mobile
How to decide which format to use when a client asks you to design the mechanism for their loyalty program. - http://amp.gs/NC5J
#pwa #mobile
Smashing Magazine
Which Is Best: A Loyalty Program PWA Or Mobile App? — Smashing Magazine
Customers’ loyalty does not come for free. While it would be nice if they were satisfied with a high-quality product with some extra bells-and-whistles thrown in, sometimes what’s needed to seal the deal is a rewards system. But when a client asks you to…
Intl.NumberFormat and Its New Capabilities
Intl.NumberFormat is an established route to locale-aware number formatting, but it is gaining a variety of new abilities (already supported on Chrome 77+) including support for BigInt, units of measurement, and scientific notation. - http://amp.gs/NkaC
#javascript
Intl.NumberFormat is an established route to locale-aware number formatting, but it is gaining a variety of new abilities (already supported on Chrome 77+) including support for BigInt, units of measurement, and scientific notation. - http://amp.gs/NkaC
#javascript
v8.dev
Intl.NumberFormat · V8
Intl.NumberFormat enables locale-aware number formatting.
Introducing Transloco: Angular Internationalization Done Right
Translation can drive you crazy, here's the cure! The internationalization (i18n) library for Angular. Introducing Transloco: Angular Internationalization Done Right.
- http://amp.gs/N7zF
#angular
Translation can drive you crazy, here's the cure! The internationalization (i18n) library for Angular. Introducing Transloco: Angular Internationalization Done Right.
- http://amp.gs/N7zF
#angular
Medium
🚀 Introducing Transloco: Angular Internationalization Done Right
For a while I’ve been thinking about creating an Angular i18n library, which incorporates some concepts I had in mind.
React: Separation of Concerns
How to best manage your data structure components to ensure a proper separation of concerns in React. - http://amp.gs/NPe7
#react
How to best manage your data structure components to ensure a proper separation of concerns in React. - http://amp.gs/NPe7
#react
Medium
React — Separation of Concerns
When specifying the behavior of a data structure component, there are often two concerns that need to be dealt with: basic functionality…
Vue.js Single-File Component Factory
Perhaps the best way to inject dependencies is via factory functions that take dependencies as parameters. In this article, you'll see a solution that makes it possible to do this from a Vue.js single-file component.
- http://amp.gs/NykE
#vue
Perhaps the best way to inject dependencies is via factory functions that take dependencies as parameters. In this article, you'll see a solution that makes it possible to do this from a Vue.js single-file component.
- http://amp.gs/NykE
#vue
markus.oberlehner.net
Vue.js Single File Component Factory
Learn how to export a factory function from a Vue.js Single File Component (SFC) and how to inject dependencies that way.
What the CSS — Implementing Trigonometry in SCSS, and Lessons Learnt
Weiyuan Liu shows how we can harness core engineering principles such as code reuse and unit-testing through implementing trigonometry in SCSS.
- http://amp.gs/NhUs
#css
Weiyuan Liu shows how we can harness core engineering principles such as code reuse and unit-testing through implementing trigonometry in SCSS.
- http://amp.gs/NhUs
#css
Medium
What the CSS — Implementing Trigonometry in SCSS, and lessons learnt
CSS, at its core, is a style sheet language. But we can do so much more by using Sass with its SCSS syntax.
Interesting Use Cases for JavaScript's Bitwise Operators
If you need to do some bit-level manipulation of values, JavaScript has the operators you need. - http://amp.gs/Nvsu
#javascript
If you need to do some bit-level manipulation of values, JavaScript has the operators you need. - http://amp.gs/Nvsu
#javascript
LogRocket Blog
Interesting use cases for JavaScript bitwise operators - LogRocket Blog
Although we don't often see bitwise operators used in JavaScript, they have some cool use cases. Learn their theory and implementation.