How to Optimize the Critical Rendering Path in WordPress
Some really useful tips on getting your websites loading faster if you’re using WordPress and plenty of links to plugins that can help you with the heavy lifting - https://goo.gl/Bb3BvE
#criticalRenderingPath
Some really useful tips on getting your websites loading faster if you’re using WordPress and plenty of links to plugins that can help you with the heavy lifting - https://goo.gl/Bb3BvE
#criticalRenderingPath
Kinsta Managed WordPress Hosting
How to Optimize the Critical Rendering Path in WordPress
The Critical Rendering Path is the sequence of tasks the browser performs to render a page to the screen. Why is it critical and how can we optimize it?
A Concise Comparison of JavaScript Web Frameworks
An 11 part series comparing Aurelia, Ember, Dojo, Vue, React and Angular reaches its conclusion by looking at the pros and cons of each. - https://goo.gl/cMuvLJ
#javascript #frameworks #compare
An 11 part series comparing Aurelia, Ember, Dojo, Vue, React and Angular reaches its conclusion by looking at the pros and cons of each. - https://goo.gl/cMuvLJ
#javascript #frameworks #compare
SitePen Blog
Web Frameworks: Conclusions
It has come time to read the liner notes and write some conclusions. When we started writing this blog series, we knew that JavaScript/web application frameworks were not easy to summarize.
Putting The Helmet On: Securing Your Express App
How to use modules like ‘helmet’ to improve the security of an Express app. - https://goo.gl/8gkxC7
#nodejs #express
How to use modules like ‘helmet’ to improve the security of an Express app. - https://goo.gl/8gkxC7
#nodejs #express
Twilio
Putting the helmet on - Securing your Express app
Learn how you can improve the security of your Node.js & Express web application with a set of HTTP headers such as Content Security Policy.
Introducing react-pivottable: A Pivot Table Component -
https://goo.gl/kmEqDB
#react #component #table
https://goo.gl/kmEqDB
#react #component #table
codeburst
Introducing react-pivottable
By Nicolas Kruchten
A Look at Angular Code Alongside Vue Code
Writing the same app in Angular & Vue and comparing both the similarities and differences. - https://goo.gl/feQT2X
#vue #angular #compare
Writing the same app in Angular & Vue and comparing both the similarities and differences. - https://goo.gl/feQT2X
#vue #angular #compare
Protected Routes and Authentication with React Router v4
Create routes that only certain users can access based on their auth status using React Router. - https://goo.gl/9qyXza
#react #router
Create routes that only certain users can access based on their auth status using React Router. - https://goo.gl/9qyXza
#react #router
TylerMcGinnis.com - Learn the latest web technologies
Protected routes and authentication with React Router v4
Protected routes are an important part of any web application. In this article you'll learn how to create authenticated routes (routes that only certain users can access based on their authentication status) using React Router.
52 Useful Docker Tools
Links and summaries for a variety of Docker-related tools cover areas from service discovery to security and logging. - https://goo.gl/VQRwNA
#docker #tools
Links and summaries for a variety of Docker-related tools cover areas from service discovery to security and logging. - https://goo.gl/VQRwNA
#docker #tools
React Bits: A Compilation of React Patterns and Tips
A variety of React-oriented techniques, tips and tricks broken down into 50 digestable chunks. - https://goo.gl/9Zftm7
#react
A variety of React-oriented techniques, tips and tricks broken down into 50 digestable chunks. - https://goo.gl/9Zftm7
#react
Continuous Infrastructure: The Other CI
Want to boost the efficiency of your DevOps operations? Make infrastructure a first-class citizen of the CI pipeline. - https://goo.gl/YU59wy
#ci
Want to boost the efficiency of your DevOps operations? Make infrastructure a first-class citizen of the CI pipeline. - https://goo.gl/YU59wy
#ci
Opensource.com
Continuous infrastructure: The other CI
Continuous delivery (CD) and continuous integration (CI) are two well-known aspects of DevOps. But the CI in vogue today is missing a critical “I:” infrastructure.
A Comprehensive Guide to Web Design
In this article Nick Babich focuses on the main principles, heuristics, and approaches to help create a great user experience. - https://goo.gl/mTGSos
#webDesign #guide
In this article Nick Babich focuses on the main principles, heuristics, and approaches to help create a great user experience. - https://goo.gl/mTGSos
#webDesign #guide
Smashing Magazine
A Comprehensive Guide To Web Design
In this article, I’ll focus on the main principles, heuristics and approaches that will help you to create a great user experience for your website. I’ll start with global things like the user journey (how to define the “skeleton” of the website) and work…
A Look at Dynamic 'import()'
Dynamic import() is a new function-like form of import, but why could it be useful? Currently in beta versions of Chrome and Safari only. - https://goo.gl/3j36st
#javascript
Dynamic import() is a new function-like form of import, but why could it be useful? Currently in beta versions of Chrome and Safari only. - https://goo.gl/3j36st
#javascript
Google Developers
Dynamic import() | Web
| Google Developers
| Google Developers
Dynamic import() introduces a new function-like form of import that unlocks new capabilities compared to static import. This article compares the two and gives an overview of what's new.
React Spreadsheet Grid: An Excel-Like Grid Component
Complete with custom cell editors, keyboard control support, and resizable columns. - https://goo.gl/puFWPh
#react #grid
Complete with custom cell editors, keyboard control support, and resizable columns. - https://goo.gl/puFWPh
#react #grid
GitHub
denisraslov/react-spreadsheet-grid
react-spreadsheet-grid - Excel-like grid component for React with custom cell editors, performant scroll & resizable columns
How to Work with Forms, Inputs and Events in React
How to capture text input and input via other form elements like input, textarea, and option. - https://goo.gl/6w45UE
#react #forms
How to capture text input and input via other form elements like input, textarea, and option. - https://goo.gl/6w45UE
#react #forms
Medium
How to Work with Forms, Inputs and Events in React
This is an excerpt from the book React Quickly, available at manning.com
Official ESLint plugin for Vue.js - First beta
It’s now compatible with the official style guide and will get more rules soon. - https://goo.gl/sizLZn
#vue #eslint
It’s now compatible with the official style guide and will get more rules soon. - https://goo.gl/sizLZn
#vue #eslint
GitHub
vuejs/eslint-plugin-vue
eslint-plugin-vue - Official ESLint plugin for Vue.js
Taming Architecture Complexity in V8
An introduction to CodeStubAssembler (CSA), a component in V8 that “has been a very useful tool in achieving some big performance wins over the last several V8 releases”. - https://goo.gl/VE4oc2
#v8
An introduction to CodeStubAssembler (CSA), a component in V8 that “has been a very useful tool in achieving some big performance wins over the last several V8 releases”. - https://goo.gl/VE4oc2
#v8
v8project.blogspot.co.uk
Taming architecture complexity in V8 — the CodeStubAssembler
A blog by the V8 team for JavaScript enthusiast that want to get a glimpse 'under the hood' of Chrome's JavaScript engine.
Simple Asynchronous Infinite Scroll with Vue Watchers
Infinite Scroll is a UX pattern that suggests showing users few contents on page or app load. More contents are then loaded once the user starts scrolling down the page. - https://goo.gl/kGJF7L
#vue
Infinite Scroll is a UX pattern that suggests showing users few contents on page or app load. More contents are then loaded once the user starts scrolling down the page. - https://goo.gl/kGJF7L
#vue
Scotch
Simple Asynchronous Infinite Scroll with Vue Watchers
Infinite Scroll is a UX pattern that suggests showing users few contents on page or app load. More contents are then loaded once the user starts scrolling down the page. These contents are loaded asynchrounously by making request to the server responsible…
An Intro to Scrollama.js for Telling Stories Through Scrolling
The what, why, and how behind using a library for efficient ‘scrollytelling’ that uses IntersectionObserver in favor of scroll events. - https://goo.gl/i8i5W9
#javascript
The what, why, and how behind using a library for efficient ‘scrollytelling’ that uses IntersectionObserver in favor of scroll events. - https://goo.gl/i8i5W9
#javascript
The Pudding
An Introduction to Scrollama.js
The what, why, and how to use scrollama.js for your next scrollytelling story.
An In-Depth Introduction to React Native
A ‘show and tell’ in-depth video introduction to React Native. - https://goo.gl/KEWQnK
#reactnative #video
A ‘show and tell’ in-depth video introduction to React Native. - https://goo.gl/KEWQnK
#reactnative #video
YouTube
BxJS - In-depth introduction to React-Native
This is a video for "Building X with javascript" series. In this video I give an in-depth introduction to react-native. Mentioned links: https://github.com/B...