CSS Grid Layout Secrets Revealed
Dig into the CSS Grid Layout specification to uncover some features you might have missed – and some coming soon. - https://goo.gl/ivavxo
#css #grid
Running a Node App on Amazon ECS: The EC2 Container Service Mega-Walkthrough
If you’re using Amazon Web Services, ECS can be attractive way to run apps - this article digs into why and some of the things to watch out for when using it to run Node apps. - https://goo.gl/X8iaEH
#aws #nodejs
Up and Running with GraphQL in the Cloud using AWS AppSync
A hosted GraphQL service from Amazon could be a convenient backend for many types of React app. - https://goo.gl/YcPQ7W
#react #aws #graphql
Nerv: A Fast IE8- and React 16-Compatible React Alternative
In a similar vein to Preact, Nerv bills itself as a tinier, faster React alternative and has browser compatibility as a particular focus. -
https://goo.gl/cKBkW8
#nerv
Server Rendering, Code Splitting, & Lazy Loading with React Router v4 -
https://goo.gl/3q37CP
#react #serverRendering
Introducing VuePress: WordPress Development With Vue and GraphQL.
In this article, Ramsay Lanier introduces you to his new project VuePress, which allows you to create a simple blog with WordPress, Vue and GraphQL. - https://goo.gl/5WqRcU
#vue
The Vue Libraries I Made in 2017
Wondering how you can contribute new Vue.js open-source software? Egoist provides good inspiration, having made around 20 different Vue.js libraries in 2017. - https://goo.gl/Ugj2a9
#vue #libraries
Jimp: Image Processing Library with No Native Dependencies
Covers resizing, cropping, color manipulations, and more. Pure JS and solely for Node. - https://goo.gl/DT1HCP
#nodejs
How to Use Variable Fonts on the Web
Anna Monus gives a nice introduciton to Variable Fonts. - https://goo.gl/ygPcJV
#css
Simple Face Recognition from Node
face-recognition.js is a Node wrapper for dlib, a C++ machine learning library that can be manipulated to do facial recognition. - https://goo.gl/M72kss
#nodejs
Responsive Typography Using Modern CSS
Steven Loria shares some guidelines that will help you design with modular type scales on the web. - https://goo.gl/cvR7q9
#css #typography
What’s New in HTML 5.2?
HTML 5.2 became an official W3C Recommendation (REC) a month ago, but what did it introduce and change? - https://goo.gl/nf7SNF
#html5
Creating an 'Offline' Notice in React Native
Have you ever seen the red “No Internet Connection” sign in mobile apps like Facebook Messenger. Here’s how to recreate it. - https://goo.gl/WD3VC7
#reactNative
12 Mobile UX Design Trends For 2018
A list of mobile UX design trends to expect this year. - https://goo.gl/LGY22q
#mobile
Handling Ajax Request in Vue Applications Using Axios
Handling Ajax Request in Vue Applications Using Axios. - https://goo.gl/svqaPR
#vue
Learning to Operate Kubernetes Reliably
An in-depth post on why Stripe chose to build on top of Kubernetes, how they integrated Kubernetes into their existing infrastructure, and their approach to increasing reliability. - https://goo.gl/dfztqE
#kubernetes
What’s new in Vue Devtools 4.0
Vue.js team member Guillaume Chau dives into the new features and improvements in Vue Devtools 4. These including editable component data, filtering events by component, improvements to the layout and more! - https://goo.gl/FfBnaU
#vue #devTools
The Brutal Lifecycle of JavaScript Frameworks
Every now and then, a new framework pops up claiming it will revolutionize development. Until the next one. Stack Overflow looks at such lifecycles based on questions asked on its service. - https://goo.gl/SNbc22
#javascript #frameworks
Templating in Vue: Separation of Concerns or Separation of Technology?
In this article, Scott Molinari brings an interesting perspective on single-file components, the pattern you almost always find used in React or VueJS apps to break down application logic. - https://goo.gl/ko3yho
#vue
Demystifying CSS alignment
If you’ve been working on Flexbox or Grid and keep having to go back to check how you align the content then this is a great article that covers everything you need to know - https://goo.gl/F3HSC5
#css
Functional-Light JavaScript: A Balanced Book on FP in JS
Kyle Simpson’s written an interesting book that takes a pragmatic look at functional programming concepts in JavaScript. And, yes, you can read it all on GitHub. - https://goo.gl/AKHbXa
#javascript #functional
Building an Online Text RPG with React and GraphQL
An extremely meaty first part to an ongoing series about building an online multiplayer RPG with React. - https://goo.gl/A6XVfA
#react #graphql
Code Splitting with React and React Router
Avoid downloading code in your app until your user really needs it. That’s code splitting. A tutorial in both written and video formats. - https://goo.gl/UXUcSV
#react #splitCode
Which JavaScript Frameworks Are the Fastest?
Catch the numbers on web performance regarding JavaScript Frameworks. - https://goo.gl/S1MxLv
#web #javascript #frameworks
A Philosophical Introduction to React Router v4
React Router v4 brings dynamic, component based routing to your React apps. This post digs into the philosophy behind its approach as well as how to use it. - https://goo.gl/ojU4fN
#react #routing
Vue 2 Transitions
Vue 2 Reusable transitions components. - https://goo.gl/ny5kd2
#vue #transitions
Running a Node App on AWS ECS: An EC2 Container Service Walkthrough
If you’re using Amazon Web Services, ECS can be attractive way to run apps - this article digs into why and some of the things to watch out for when using it to run Node apps. - https://goo.gl/Y9WGUQ
#nodejs #aws
Designing Tables for Reusability
A case study for establishing a design pattern internally at your company - https://goo.gl/P7A79z
#ux #design #table
Design Systems and CSS Grid
Stuart Robson tackles the tricky issue of integrating modern CSS Grid layouts into an existing design system. - https://goo.gl/FEg5Q8
#css #grid
Loading Polyfills Only When Needed
If you’re loading polyfills for everyone then you’re essentially punishing the users that are using the latest and greatest browsers. These are our friends, the people who stay up to date so you can use Service Workers, Grid Layout, Promises, fetch… we should make sure they have a great experience too - https://goo.gl/c6RzMy
#web #polyfills