How to Use Storybook in a React Project
Storybook is a tool for building and visualizing components in an isolated environment. - http://bit.ly/2TlpyZq
#react #storybook
Storybook is a tool for building and visualizing components in an isolated environment. - http://bit.ly/2TlpyZq
#react #storybook
blog.bam.tech
How to Use Storybook in a React Project
Discover how to use Storybook and its addons in a React Project to detect bugs faster and to make reusable components.
Are You Accessible? — A Primer on Web Accessibility
Amy Dickens gives an excellent, in-depth primer on web accessibility - http://bit.ly/2qOUvb8
#css
Amy Dickens gives an excellent, in-depth primer on web accessibility - http://bit.ly/2qOUvb8
#css
Medium
👉 Are you accessible? 👈 — A Primer on Web Accessibility
Accessibility of the world wide web hasn’t always been a number one priority for web developers (much to detriment of internet users)…
Angular 7 - User Registration and Login Example & Tutorial
In this tutorial we’ll go through an example of how to build a simple user registration and login system using Angular 7, TypeScript and webpack 4. - http://bit.ly/2K9CcGE
#angular
In this tutorial we’ll go through an example of how to build a simple user registration and login system using Angular 7, TypeScript and webpack 4. - http://bit.ly/2K9CcGE
#angular
Jasonwatmore
Angular 7 - User Registration and Login Example & Tutorial | Jason Watmore's Blog
Tutorial with example of how to implement user registration and login functionality with Angular 7, TypeScript and Webpack 4
Lazy-Loading Components in React 16.6
Code-splitting and lazy-loading React components with Suspense and React.lazy() - http://bit.ly/2zgeapn
#react
Code-splitting and lazy-loading React components with Suspense and React.lazy() - http://bit.ly/2zgeapn
#react
LogRocket Blog
Lazy loading React components - LogRocket Blog
Learn how to apply code-splitting and lazy loading to React components with React.lazy() and React.Suspense.
A Netflix Web Performance Case Study
An interesting look at how Netflix worked to improve the ‘time-to-interactive’ metric on their desktop Web experience. It involved both prefetching and ripping out React. - http://bit.ly/2DF4dVr
#web #performance
An interesting look at how Netflix worked to improve the ‘time-to-interactive’ metric on their desktop Web experience. It involved both prefetching and ripping out React. - http://bit.ly/2DF4dVr
#web #performance
Medium
A Netflix Web Performance Case Study
Improving Time-To-Interactive for Netflix.com on Desktop
Warn: Property or Method is Not Defined
Chances are if you’ve been developing with Vue for any amount of time, you’ve seen the error “Property or method is not defined.” This article breaks down the common reasons behind this error. - http://bit.ly/2DMwB8f
#vue
Chances are if you’ve been developing with Vue for any amount of time, you’ve seen the error “Property or method is not defined.” This article breaks down the common reasons behind this error. - http://bit.ly/2DMwB8f
#vue
Michaelnthiessen
Warn: Property or Method is Not Defined
Chances are if you've been developing with Vue for any amount of time, you've gotten this error: Property or method prop is not defined. Most of the time this error is because you misspelled a variable name somewhere. But there are other causes as well.
Using calc() to Change The Height of a Hero Component
For situations where you need to mix relative units and pixels. - http://bit.ly/2FDqdCs
#css
For situations where you need to mix relative units and pixels. - http://bit.ly/2FDqdCs
#css
CSS-Tricks
Fun Tip: Use calc() to Change the Height of a Hero Component | CSS-Tricks
The concept of Fluid Typography was tossed around a couple of years ago. The main idea is that if you know what size your font is at two different viewport
Building Universal Vue.js Apps with Nuxt.js - Sébastien Chopin
In this episode of Full-Stack Radio, Adam Wathan interviews Sébastien Chopin about Nuxt.js, a Next.js-inspired framework for building server-rendered client-side applications with Vue. - http://bit.ly/2S9WMtd
#vue #podcast
In this episode of Full-Stack Radio, Adam Wathan interviews Sébastien Chopin about Nuxt.js, a Next.js-inspired framework for building server-rendered client-side applications with Vue. - http://bit.ly/2S9WMtd
#vue #podcast
Going Beyond console.log()
While console.log() may form the basis of many people’s debugging strategies, the console object has a lot more to offer, as covered here. If you don’t know about console.assert or console.count, step in. - http://bit.ly/2TI23Kk
#javascript
While console.log() may form the basis of many people’s debugging strategies, the console object has a lot more to offer, as covered here. If you don’t know about console.assert or console.count, step in. - http://bit.ly/2TI23Kk
#javascript
Medium
Beyond console.log()
There is more to debugging JavaScript than console.log to output values. It might seem obvious I’m going to pimp the debugger, but…
Container Components with Angular
With the Model-View-Presenter design pattern it is easy to use any application state management library or pattern whether its a redux-like state container like the NgRx Store or simply plain old services as in the “Tour of Heroes” Angular tutorial. - http://bit.ly/2DKaFdT
#angular
With the Model-View-Presenter design pattern it is easy to use any application state management library or pattern whether its a redux-like state container like the NgRx Store or simply plain old services as in the “Tour of Heroes” Angular tutorial. - http://bit.ly/2DKaFdT
#angular
Angular In Depth
Container Components with Angular
Isolate and extract app state and other non-presentational logic from Angular components.
Making a Large-Scale App with Vue.js - Part 1
This article explains how to organize and manage your data store and API client if you’re building a large-scale application using Vue.js. - http://bit.ly/2DVBxZa
#vue
This article explains how to organize and manage your data store and API client if you’re building a large-scale application using Vue.js. - http://bit.ly/2DVBxZa
#vue
Medium
Making a large scale app with vue.js (part 1): modularize your store!
First part about things to do when building a vue.js large scale application.
Git Aliases I Can’t Live Without
A list of handy Git aliases inspired by the oh-my-zsh suite. - http://bit.ly/2FHPagd
#git
A list of handy Git aliases inspired by the oh-my-zsh suite. - http://bit.ly/2FHPagd
#git
Michał Konarski
Git aliases I can't live without
A list of handy Git aliases inspired by oh-my-zsh suite.
Generate SSL Certs for Local Development
A bash script for generating trusted self-signed SSL certs for local development on your Mac. - http://bit.ly/2r3x4uU
#ssl #cerf
A bash script for generating trusted self-signed SSL certs for local development on your Mac. - http://bit.ly/2r3x4uU
#ssl #cerf
GitHub
GitHub - kingkool68/generate-ssl-certs-for-local-development: A bash script for generating trusted self-signed SSL certs for local…
A bash script for generating trusted self-signed SSL certs for local development on your Mac - kingkool68/generate-ssl-certs-for-local-development
Angular 7 CRUD Example | MEAN Stack Tutorial From Scratch
In this article, we will be creating a sample Angular 7 application step by step from scratch and perform CRUD operations. The backend API will be exposed using Node.js, and Express framework and MongoDB will be used for persistent storage of the data. We will be using Angular CLI 7 to generate the boilerplate project - http://bit.ly/2PWtkKz
#angular #mean
In this article, we will be creating a sample Angular 7 application step by step from scratch and perform CRUD operations. The backend API will be exposed using Node.js, and Express framework and MongoDB will be used for persistent storage of the data. We will be using Angular CLI 7 to generate the boilerplate project - http://bit.ly/2PWtkKz
#angular #mean
AppDividend
Angular 7 CRUD Example | MEAN Stack Tutorial From Scratch
Angular 7 CRUD Example MEAN Stack Tutorial. We use MongoDB as a NoSQL database, Node.js as a server platform, Express as a web framework and Angular 7.
Static Properties in JavaScript Classes with Inheritance
A look at a pattern for implementing static properties in ES6. - http://bit.ly/2KvhS2J
#javascript
A look at a pattern for implementing static properties in ES6. - http://bit.ly/2KvhS2J
#javascript
The Code Barbarian
Static Properties in JavaScript Classes with Inheritance
What happens with static properties using ES6 class inheritance? This article describes a common gotcha.
How to Render Vue Apps to a Server Using Nuxt
This article by Chris Nwamba aka Codebeast will show you how to easily get started rendering apps built with Vue to a server using Nuxt. - http://bit.ly/2DUUHOR
#vue #nuxt
This article by Chris Nwamba aka Codebeast will show you how to easily get started rendering apps built with Vue to a server using Nuxt. - http://bit.ly/2DUUHOR
#vue #nuxt
Telerik Blogs
How to Render Vue Apps to a Server Using Nuxt
Learn how to easily get started rendering apps built with Vue to a server using Nuxt.
CSS and Network Performance
Harry Roberts looks at how CSS can prove to be a substantial bottleneck (both in itself and for other resources) on the network, and how we can mitigate it, thus shortening the Critical Path and reducing our time to Start Render. - http://bit.ly/2Bvxqkc
#css
Harry Roberts looks at how CSS can prove to be a substantial bottleneck (both in itself and for other resources) on the network, and how we can mitigate it, thus shortening the Critical Path and reducing our time to Start Render. - http://bit.ly/2Bvxqkc
#css
Csswizardry
CSS and Network Performance – CSS Wizardry
How can CSS impact network and resource-loading performance? Can things be that serious?
React Concepts You Should Know (After You Learn The Basics)
If you’re still pretty new to React, this is for you. You’ve followed some tutorials, maybe got your first React app working, but what’s worth understanding next? Context, HOCs, and lifecycle methods for starters. - http://bit.ly/2FEh5h5
#react
If you’re still pretty new to React, this is for you. You’ve followed some tutorials, maybe got your first React app working, but what’s worth understanding next? Context, HOCs, and lifecycle methods for starters. - http://bit.ly/2FEh5h5
#react
freeCodeCamp.org
These are the concepts you should know in React.js (after you learn the basics)
by Chris Chuck These are the concepts you should know in React.js (after you learn the basics) Photo by Daniel Jensen [https://unsplash.com/photos/Hfg3xK7KDDk?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText] on Unsplash [https://unsplash.com/]You’ve…