The Principles for Writing Awesome Angular Components
Angular is a component-based framework, and as such, writing good Angular components is crucial to the overall architecture of an application. - http://amp.gs/S3KA
#angular
Angular is a component-based framework, and as such, writing good Angular components is crucial to the overall architecture of an application. - http://amp.gs/S3KA
#angular
Medium
The Principles for Writing Awesome Angular Components
Some of the best practices and lessons the community has learned in the last few years.
An Overview of CSS Animation Libraries
A look at the current landscape of CSS animation libraries and how they vary. - http://amp.gs/SHLa
#css #animation
A look at the current landscape of CSS animation libraries and how they vary. - http://amp.gs/SHLa
#css #animation
CSS-Tricks
CSS Animation Libraries | CSS-Tricks
There are an awful lot of libraries that want to help you animate things on the web. These aren't really libraries that help you with the syntax or the
How to Reduce Your Vue.JS Bundle Size With Webpack
If you are creating production Vue apps you should take the time to evaluate your build size. Learn how to use the webpack-bundle-analyzer to determine what items are consuming the most space, and how to take steps to reduce the size of those items.
- http://amp.gs/S2ua
#vue
If you are creating production Vue apps you should take the time to evaluate your build size. Learn how to use the webpack-bundle-analyzer to determine what items are consuming the most space, and how to take steps to reduce the size of those items.
- http://amp.gs/S2ua
#vue
DEV Community
How to Reduce Your Vue.JS Bundle Size With Webpack
How to Reduce Your Vue.JS Bundle Size With Webpack
Angular 8 RxJS Multiple HTTP Request using the forkJoin Example
A comprehensive step by step tutorial on Multiple HTTP using Angular 8 RxJS forkJoin operator including an example
- http://amp.gs/Sw3H
#angular
A comprehensive step by step tutorial on Multiple HTTP using Angular 8 RxJS forkJoin operator including an example
- http://amp.gs/Sw3H
#angular
Djamware.com
Angular 8 RxJS Multiple HTTP Request using the forkJoin Example
A comprehensive step by step tutorial on Multiple HTTP using Angular 8 RxJS forkJoin operator including an example
Form Design: From Zero to Hero All in One Blog Post
A quick and to-the-point guide for designing forms that “everyone can use and complete as quickly as possible”. - http://amp.gs/SFHz
#form #design
A quick and to-the-point guide for designing forms that “everyone can use and complete as quickly as possible”. - http://amp.gs/SFHz
#form #design
Adamsilver.io
Form design: from zero to hero all in one blog post – Adam Silver – Designer, London, UK.
90 percent of the problems found in forms solved in a few hundred precious words.
How Does React's Development Mode Work?
React’s development mode informs you about various things that could cause problems in your app, but these checks are turned off in production for performance reasons. This is an explanation of just how that works. - http://amp.gs/SXCK
#react
React’s development mode informs you about various things that could cause problems in your app, but these checks are turned off in production for performance reasons. This is an explanation of just how that works. - http://amp.gs/SXCK
#react
overreacted.io
How Does the Development Mode Work?
Dead code elimination by convention.
How to Build a Real Time Chat Application in Node using Express, Mongoose and Socketio
Building a real-time chat app is a perennial favorite and almost a “Hello world” of the modern era at this stage. - http://amp.gs/SXLn
#nodejs
Building a real-time chat app is a perennial favorite and almost a “Hello world” of the modern era at this stage. - http://amp.gs/SXLn
#nodejs
freeCodeCamp.org
How to build a real time chat application in Node.js using Express, Mongoose and Socket.io
by Arun Mathew Kurian How to build a real time chat application in Node.js using Express, Mongoose and Socket.io In this tutorial, we will use the Node.js platform to build a real time chat application that sends and shows messages to a recipient instantly…
How to Add Flexbox Fallback to CSS Grid
Adding a flexbox fallback to a calendar built with CSS Grid. - http://amp.gs/SLAM
#css
Adding a flexbox fallback to a calendar built with CSS Grid. - http://amp.gs/SLAM
#css
Zell Liew
How to add Flexbox fallback to CSS Grid | Zell Liew
How to add a flexbox fallback to a calendar built with CSS Grid
Compile-time vs. Runtime configuration of your Angular App
Learn how to setup compile time as well as runtime configuration for your Angular application - http://amp.gs/SWTy
#angular
Learn how to setup compile time as well as runtime configuration for your Angular application - http://amp.gs/SWTy
#angular
juristr.com
Compile-time vs. Runtime configuration of your Angular App
Learn how to setup compile time as well as runtime configuration for your Angular application
Apollo Client, Now with React Hooks
Apollo Client is a popular library for handling state and fetching when using GraphQL-based APIs. It now includes official support for React hooks including a special hook for performing queries in a lazy fashion. - http://amp.gs/SWNo
#react #apollo
Apollo Client is a popular library for handling state and fetching when using GraphQL-based APIs. It now includes official support for React hooks including a special hook for performing queries in a lazy fashion. - http://amp.gs/SWNo
#react #apollo
Apollo GraphQL Blog
Apollo Client, now with React Hooks
Our mission is to make Apollo Client the most modern and frictionless state management solution for React developers. As the React community has evolved and pioneered new UI development best practices over time, we’ve ensured that Apollo Client adopts and…
Writing a Simple MVC App in Plain JavaScript
If you’re tired of hearing about React, Angular, Mithril, Ember, and the rest, and just want to write JavaScript, this is for you.
- http://amp.gs/SaPr
#javascript
If you’re tired of hearing about React, Angular, Mithril, Ember, and the rest, and just want to write JavaScript, this is for you.
- http://amp.gs/SaPr
#javascript
Taniarascia
Build a Simple MVC App From Scratch in JavaScript
I wanted to write a simple application in plain JavaScript using the model-view-controller architectural pattern. So I did, and here it is…
Vue.js 3: Future-Oriented Programming
Vue’s function-based API presents a clean and flexible way to compose logic inside and between components. See how effective component composition be achieved without the need for higher-order components and mixins. - http://amp.gs/Song
#vue
Vue’s function-based API presents a clean and flexible way to compose logic inside and between components. See how effective component composition be achieved without the need for higher-order components and mixins. - http://amp.gs/Song
#vue
Medium
Vue.js 3: Future-Oriented Programming
How function-based API solves logic reusability problem
Building Reusable Angular Components: Best Practices
Components are the basis of modern SPAs (Angular, Vue, React). They are the simplest building blocks of SP applications. A SPA app is a tree of components, it starts with the root component, going up spreading into multiple branches. A Component contains the View to be displayed, a Controller that contains the display logic and the Model that tells the component how data is to be displayed. The Components are composable, they build up an app by stacking the components on each other like LEGO blocks.
- http://amp.gs/SMGA
#angular
Components are the basis of modern SPAs (Angular, Vue, React). They are the simplest building blocks of SP applications. A SPA app is a tree of components, it starts with the root component, going up spreading into multiple branches. A Component contains the View to be displayed, a Controller that contains the display logic and the Model that tells the component how data is to be displayed. The Components are composable, they build up an app by stacking the components on each other like LEGO blocks.
- http://amp.gs/SMGA
#angular
Medium
Building Reusable Angular Components: Best Practices
Components are the basis of modern SPAs (Angular, Vue, React). They are the simplest building blocks of SP applications. A SPA app is a…
22 Handy Tools for React Developers in 2019
OK, it’s a listicle but enough depth and explanation is provided for each of the items to make it genuinely useful. - http://amp.gs/S5fU
#react
OK, it’s a listicle but enough depth and explanation is provided for each of the items to make it genuinely useful. - http://amp.gs/S5fU
#react
DEV Community
22 Miraculous Tools for React Developers in 2019
Find me on medium (Edit: Read the comments to find my comment about a good modern program for progra...
Let's Learn About Scope in JavaScript
Google’s dynamic JavaScript duo, Jake and Surma, present an entertaining chat about variable scoping, complete with tablet-based demos. - https://www.youtube.com/watch?v=5LEuJNLfLN0
#javascript #video
Google’s dynamic JavaScript duo, Jake and Surma, present an entertaining chat about variable scoping, complete with tablet-based demos. - https://www.youtube.com/watch?v=5LEuJNLfLN0
#javascript #video
YouTube
Scope in JavaScript - HTTP 203
Jake and Surma take a deep dive into the world of variable scoping in JavaScript. var vs const/let and scripts vs modules.
Multi-Column Manipulation
An interesting experiment in applying multiple columns in response to the amount of content. So, if the viewport is wide enough the content will dynamically divide to two or more columns. - http://amp.gs/SQnp
#css
An interesting experiment in applying multiple columns in response to the amount of content. So, if the viewport is wide enough the content will dynamically divide to two or more columns. - http://amp.gs/SQnp
#css
every-layout.dev
Multi-column manipulation
Thoughts and ideas around the present and future of multi-column layout
Handling and Dispatching Events with Node
A look at how to create, dispatch, and manage events using EventEmitter and the events module. - http://amp.gs/Sck4
#nodejs
A look at how to create, dispatch, and manage events using EventEmitter and the events module. - http://amp.gs/Sck4
#nodejs
LogRocket Blog
Handling and dispatching events with Node.js - LogRocket Blog
In event-driven programming, code is written to react instead of waiting to be called. Learn how to create, dispatch, and manage events in Node.js.
Create your own image classifier with Angular and Tensorflowjs
If you're a JS developer that is amazed by things Data Scientists do with Machine learning and Artifical intelligence this article will help you learn how to create your own image classifiers using only Javascript in less than a few minutes!
- http://amp.gs/S6EU
#angular #tensorflow
If you're a JS developer that is amazed by things Data Scientists do with Machine learning and Artifical intelligence this article will help you learn how to create your own image classifiers using only Javascript in less than a few minutes!
- http://amp.gs/S6EU
#angular #tensorflow
Playing with Vue and Vuex - Lemonade Stand
Learn how to build a text-based game like the PC classic "Lemonade Stand" with Vue and Vuex. - http://amp.gs/NIEX
#vue
Learn how to build a text-based game like the PC classic "Lemonade Stand" with Vue and Vuex. - http://amp.gs/NIEX
#vue
Raymondcamden
Playing with Vue and Vuex - Lemonade Stand
Father, husband, developer relations and web standards expert, and cat demo builder.
Looking at the Optional Chaining ES Proposal
Boils down the proposal to exactly the essentials you need to know. - http://amp.gs/Njqu
#javascript
Boils down the proposal to exactly the essentials you need to know. - http://amp.gs/Njqu
#javascript