The Problems with Redux
Redux “is great but comes along with tons of boilerplate configuration and architecture”. This article asks if React’s local state, MobX and Realm can solve this. - https://goo.gl/VdmM4D
#redux
Redux “is great but comes along with tons of boilerplate configuration and architecture”. This article asks if React’s local state, MobX and Realm can solve this. - https://goo.gl/VdmM4D
#redux
Quantum Blog
The Problems with Redux: Are MobX and Realm going to put and end to it
We all know redux is great but comes along with tons of boilerplate configuration and architecture. Can React's local state, MobX and Realm solve this?
A Modern JavaScript Cheatsheet
Plenty of JS terminology explained, along with code examples, in this thorough guide. - https://goo.gl/HF56LK
#javascript
Plenty of JS terminology explained, along with code examples, in this thorough guide. - https://goo.gl/HF56LK
#javascript
Deploying ES2015+ Code in Production Today
Using the new `script type="module"` approach gives us some benefits merely beyond loading ES modules alone - it guarantees ES6/ES2015 support. - https://goo.gl/55gSW7
#es2015 #deploying
Using the new `script type="module"` approach gives us some benefits merely beyond loading ES modules alone - it guarantees ES6/ES2015 support. - https://goo.gl/55gSW7
#es2015 #deploying
Philipwalton
Deploying ES2015+ Code in Production Today — Philip Walton
Thoughts on web development, open source, software architecture, and the future.
Chrome Breaks Visual Viewport — Again
If you use window.innerWidth/Height in any of your sites, it may break in Chrome 61/Android. - https://goo.gl/TN2TjF
#chrome #viewport
If you use window.innerWidth/Height in any of your sites, it may break in Chrome 61/Android. - https://goo.gl/TN2TjF
#chrome #viewport
Vue.js Communication: Parent-Child Components
In this excellent tutorial by Christian Gambardella shows points out some common patterns as well as anti-patterns that you should avoid. - https://goo.gl/p6yQ1t
#vue
In this excellent tutorial by Christian Gambardella shows points out some common patterns as well as anti-patterns that you should avoid. - https://goo.gl/p6yQ1t
#vue
gambardella.info
Vue.js communication part 2: parent-child components | Christian Gambardella
Many Vue.js app components will probably have some sort of parent-child relationship. In this part of the series I aim to talk about common patterns as well as
How to Use React’s Lifecycle Methods
Using React lifecycle methods to perform actions on mount, update and unmount of a component. - https://goo.gl/V34w51
#react #lifecycle
Using React lifecycle methods to perform actions on mount, update and unmount of a component. - https://goo.gl/V34w51
#react #lifecycle
CSS font-display: The Future of Font Rendering on the Web
Giulio Mainardi explains the new font-display property and how it will help CSS developers improve rendering of fonts during page load. -
https://goo.gl/4ukrGd
#css #fonts
Giulio Mainardi explains the new font-display property and how it will help CSS developers improve rendering of fonts during page load. -
https://goo.gl/4ukrGd
#css #fonts
SitePoint
CSS font-display: The Future of Font Rendering on the Web — SitePoint
Giulio Mainardi explains the new font-display property and how it will help CSS developers improve rendering of fonts during page load.
Node v8.6.0 (Current) Released
A handful of minor changes, including N-API no longer being behind a flag. A vulnerability (mentioned below) was also fixed. - https://goo.gl/yCiwD9
#nodejs #release
A handful of minor changes, including N-API no longer being behind a flag. A vulnerability (mentioned below) was also fixed. - https://goo.gl/yCiwD9
#nodejs #release
Node.js
Node v8.6.0 (Current) | Node.js
Top 10 ES6 Features Demonstrated by Example
An example-driven tour of the key features of ES6/ES2015, if you’re not quite there yet. - https://goo.gl/fLvWPE
#es6
An example-driven tour of the key features of ES6/ES2015, if you’re not quite there yet. - https://goo.gl/fLvWPE
#es6
Pragmatists
Top 10 ES6 features by example – Pragmatists
In this article, I will try to introduce the most useful features of ES6 in a succinct way.
How to More Easily Build Forms in React Native
There can be quite a few moving parts but tcomb-form-native can help a lot, as demonstrated here. - https://goo.gl/d1qnfQ
#reactNative #forms
There can be quite a few moving parts but tcomb-form-native can help a lot, as demonstrated here. - https://goo.gl/d1qnfQ
#reactNative #forms
Medium
Easily Build Forms in React Native
If you’re building a React Native app it’s almost a guarantee that you’ll have to build at least one form. The reality is you’ll probably…
Upcoming TypeScript Changes in Vue 2.5 – The Vue Point
At Vue Point, there is a new post about upcoming TypeScript changes in the 2.5 version of Vue which is currently planned to be released around early October. - https://goo.gl/Z8L5Vj
#vue
At Vue Point, there is a new post about upcoming TypeScript changes in the 2.5 version of Vue which is currently planned to be released around early October. - https://goo.gl/Z8L5Vj
#vue
Medium
Upcoming TypeScript Changes in Vue 2.5
Typing Improvements
Dealing with Asynchronous APIs in Server-Rendered React -
https://goo.gl/54yGSF
#react #serverRendered
https://goo.gl/54yGSF
#react #serverRendered
SitePoint
Dealing with Asynchronous APIs in Server-rendered React — SitePoint
Roger Jin explains how to get data from asynchronous APIs when using server-rendered React code.
Generic Sensor API: Sensors For The Web
A set of interfaces which expose sensor devices within Chrome (for now). - https://goo.gl/v2zVnb
#api #sensor
A set of interfaces which expose sensor devices within Chrome (for now). - https://goo.gl/v2zVnb
#api #sensor
Google Developers
Sensors For The Web! | Web
| Google Developers
| Google Developers
Generic Sensor API is available for Origin Trials in Chrome 62.
Why Node 8's util.promisify Is Awesome
A guide to using Node’s util.promisfy to promisify your own functions. - https://goo.gl/qcNtJH
#nodejs
A guide to using Node’s util.promisfy to promisify your own functions. - https://goo.gl/qcNtJH
#nodejs
Web Performance in The Real World: How to Make Fast Sites
An exploration of work the Microsoft Edge team does to help developers build faster sites, and how to think of performance as an investigative activity, beyond a checklist approach. - https://goo.gl/5ReAoA
#web #performance
An exploration of work the Microsoft Edge team does to help developers build faster sites, and how to think of performance as an investigative activity, beyond a checklist approach. - https://goo.gl/5ReAoA
#web #performance
Channel 9
Web performance in the real world: how to make fast websites
There is boundless advice out there on how to improve web performance. Some folks will tell you to avoid complex CSS selectors, others will tell you to reduce your JavaScript bundle size, and others w
Advanced animation in Vue.js
This is the second part of the Baby Steps Vuejs Animations Tutorial. In this tutorial, you will learn about creating functional and reusable Vue.js transitions using javascript. - https://goo.gl/JPmEZ4
#vue #animation
This is the second part of the Baby Steps Vuejs Animations Tutorial. In this tutorial, you will learn about creating functional and reusable Vue.js transitions using javascript. - https://goo.gl/JPmEZ4
#vue #animation
Medium
Advanced animation in Vue.js
This is the second part to Baby Steps Vuejs Animations Tutorial. In this tutorial we will learn about creating functional and reusable…
How Zalando bot got 98% success rate
Why Bot personality is only a minor part of the overall bot UX - https://goo.gl/tJpg9C
#ui
Why Bot personality is only a minor part of the overall bot UX - https://goo.gl/tJpg9C
#ui
Mixins and Plugins in Vue
Where mixins and plugins can provide a lot of help? Mixins and plugins have the ability to improve readability and portability of your code. - https://goo.gl/8dFZQ8
#vue
Where mixins and plugins can provide a lot of help? Mixins and plugins have the ability to improve readability and portability of your code. - https://goo.gl/8dFZQ8
#vue
Terminal Kit: A 'Full Blown' Terminal Lib for Node
Includes support for 256 colors, styles, keys and mouse handling, input fields, progress bars, screen buffers, and more. - https://goo.gl/LBghtf
#nodejs
Includes support for 256 colors, styles, keys and mouse handling, input fields, progress bars, screen buffers, and more. - https://goo.gl/LBghtf
#nodejs
GitHub
cronvel/terminal-kit
terminal-kit - Terminal utilities for node.js