A Modern JavaScript Cheatsheet
Plenty of JS terminology explained, along with code examples, in this thorough guide. - https://goo.gl/HF56LK
#javascript
Building a Movie App Interface with Vue.js
Most of us use an online streaming service to watch our favourite shows/movies. This post will highlight how to build a similarly styled movie streaming interface, with Vue.js 2.0 - https://goo.gl/pYYgxz
#vue
How to Build a 'To-Do' API With Node and Restify
Restify is a framework for building REST APIs in Node. - https://goo.gl/DQZMfX
#nodejs #restify
Vue.Js Vs. Jquery: Use Cases and Comparison with Examples
Should I stop using jQuery if I learnt Vue.js? Can you use it outside Laravel? Richard Laasri answers these questions and shows us some examples too - https://goo.gl/E39TPD
#vue #jquery
How to build a realtime chat app in React Native
Introduction to building mobile apps in React Native and how to use Pusher to handle multiple realtime messaging. - https://goo.gl/R7g7yv
#reactNative
React Network: Notifies Your App When the Network is Up/Down -
https://goo.gl/34Zxff
#react
CoffeeScript 2: A New CoffeeScript for the ES6+ Era
This new release of the controversial compile-to-JS language preserves its clean syntax but bridges the gap with ES6 and beyond. - https://goo.gl/ZH42Hh
#coffeescript
WebView with Injected JS Script
An approach to injecting JavaScript into an existing webView to allow for dynamic changes to the web properties. - https://goo.gl/h8U8g1
#webView #javaScript
React 16 was released - https://goo.gl/AuZnQK
Among the changes are some long-standing feature requests, including fragments, error boundaries, portals, support for custom DOM attributes, improved server-side rendering, and reduced file size.
#react #release
Basic Grid Layout with Fallbacks using Feature Queries -
https://goo.gl/L4qn8W
#css #grid
Series: Building reusable custom components with Vue.js - Part 3: Autocomplete dropdown
In this part of our ongoing series about Building reusable custom components with Vue.js we are going to build an autocomplete dropdown from scratch. - https://goo.gl/vubkoD
#vue #components
Optimizing React Performance
How to improve React performance in production and avoid common mistakes. - https://goo.gl/SbcMEU
#react
Working with the Network Layer in React Native Apps -
https://goo.gl/zbERcH
#reactNative
A React And Preact Progressive Web App Performance Case Study: Treebo
A case study on performance of a Progressive Web App built with React and then Preact. - https://goo.gl/M2s8w2
#react #prereact #pwa
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
How to Organize a Large React App and Make It Scale
Jack Franklin describes a set of tips and best practices for creating and organizing React applications in a scalable way. - https://goo.gl/vHKky3
#react
Paul Irish on Debugging in 2017 with Node.js
Paul Irish demonstrates improved workflows for debugging, profiling and understanding your app using the DevTools protocol. He also shares more advanced techniques for automating and monitoring Node. - https://goo.gl/yUHLz6
#nodejs #debugging
To Type or Not to Type: Quantifying Detectable Bugs in JS
A summary of an academic paper that concludes both Flow and TypeScript are good at preventing bugs that could end up in committed code. - https://goo.gl/i6Z1jh
#javascript
The All-New Guide to CSS Support in Email
A big update to this popular guide for getting your CSS behaving in a range of email clients. - https://goo.gl/wNf3gb
#css #emails
FrontEnd Development
How New Font Technologies Will Improve The Web
François Poizat looks at how variable & parametric fonts will revolutionize responsive type - https://goo.gl/samd5j
#css #fonts
@
Vue.js communication part 2: parent-child components
Many Vue.js app components will probably have some sort of parent-child relationship. - https://goo.gl/gt8EFG
#vue
Removing the White Bars in Safari on iPhone X
The notch on the new iPhone can cause the display to have white bars on the sides of your site layout. This post shows some CSS and meta tags that can fix this. - https://goo.gl/u9jg7J
#css #viewPort
Building a Small PWA with Preact and Firebase - https://goo.gl/9E5ppt
#prereact #pwa
The State of the Web and Its Performance
How can we make the Web better by designing and developing with performance in mind? A look at various ways of making impactful performance improvements. - https://goo.gl/LVqzFc
#web #performance
A Quick Explanation of React 16's componentDidCatch Lifecycle Method - https://goo.gl/NRFG3U
#react
Test Deeply Rendered Vue.js Components in Jest
See how to use vue-test-utils to test a fully rendered component tree. - https://goo.gl/NDqGMz
#vue #jest #testing
7 Helpful HTTP Tools Worth Knowing About
A review of some HTTP CLIs & GUI clients like cURL, http-console, HTTPpie, and http-prompt. - https://goo.gl/HFp3gM
#http #tools
DOM Attributes in React 16
From React 16, any unknown attributes within HTML tags in JSX will be passed through rather than stripped out. This may help with some edge cases - https://goo.gl/nDQL7c
#react