Building a data layer with Vue and Composition API
An interesting article that explains how to build the data-layer for your Vue applications using the Vue Composition-API. - http://amp.gs/L0ZF
#vue
An interesting article that explains how to build the data-layer for your Vue applications using the Vue Composition-API. - http://amp.gs/L0ZF
#vue
Medium
Building a data layer with Vue and Composition API
When you are learning about a new frontend library, such as Vue or React you can read up a lot on certain best practices. There should be…
Building a Component Library with React and Emotion
Smashing Magazine has our respect for upholding a consistently high standard for selecting and preparing their articles for publication. This time out, it’s React in combination with Emotion to build reusable components. - http://amp.gs/LKpc
#react
Smashing Magazine has our respect for upholding a consistently high standard for selecting and preparing their articles for publication. This time out, it’s React in combination with Emotion to build reusable components. - http://amp.gs/LKpc
#react
Smashing Magazine
Building A Component Library With React And Emotion — Smashing Magazine
A component library helps to keep a design consistent across multiple projects. It ensures consistency because any changes made will propagate across the projects that make use of it. In this tutorial, we’ll learn how to build a component library, using Emotion…
Custom CSS Styles for Form Inputs and Textareas
Stephanie Eckles demonstrates how to create custom form input and textarea styles that have a near-identical appearance across the top browsers. - http://amp.gs/L3Bf
#css
Stephanie Eckles demonstrates how to create custom form input and textarea styles that have a near-identical appearance across the top browsers. - http://amp.gs/L3Bf
#css
Modern CSS Solutions
Custom CSS Styles for Form Inputs and Textareas | Modern CSS Solutions
Create custom form input and textarea styles that have a near-identical appearance across the top browsers, and ensure all states meet contrast requirements.
Angular, Docker, and Spring Boot: A Match Made in Heaven
Here we take a look at the combination of Angular, Docker, and Spring Boot in a sample application with this tutorial and screencast. - http://amp.gs/LHYO
#angular
Here we take a look at the combination of Angular, Docker, and Spring Boot in a sample application with this tutorial and screencast. - http://amp.gs/LHYO
#angular
dzone.com
Angular, Docker, and Spring Boot: A Match Made in Heaven - DZone Web Dev
Here we take a look at the combination of Angular, Docker, and Spring Boot in a sample application with this tutorial and screencast.
A New Proposal for Decorators for JavaScript Classes
Currently at stage 2 in TC39’s process and due to be discussed in more depth this month, decorators provide a way to extend methods and other ‘syntax forms’ by wrapping them with other functionality. Note that this proposal differs from the decorators proposed to TC39 in 2018, that Babel 7 supports, and that inspired ‘experimental’ decorators in TypeScript. - http://amp.gs/L2pm
#javascript
Currently at stage 2 in TC39’s process and due to be discussed in more depth this month, decorators provide a way to extend methods and other ‘syntax forms’ by wrapping them with other functionality. Note that this proposal differs from the decorators proposed to TC39 in 2018, that Babel 7 supports, and that inspired ‘experimental’ decorators in TypeScript. - http://amp.gs/L2pm
#javascript
GitHub
proposal-decorators/README.md at simplified · tc39/proposal-decorators
Decorators for ES6 classes. Contribute to tc39/proposal-decorators development by creating an account on GitHub.
Nuxt SSR Optimizing Tips
Learn about the difference between server-side and client-side rendered optimization, and how to optimize your Nuxt SSR applications for optimal performance. - http://amp.gs/LwZV
#nuxt
Learn about the difference between server-side and client-side rendered optimization, and how to optimize your Nuxt SSR applications for optimal performance. - http://amp.gs/LwZV
#nuxt
Vue.js Tutorials
Nuxt SSR Optimizing Tips - Vue.js Tutorials
Learn about the difference between server-side and client-side rendered optimization, and how to optimize your Nuxt SSR applications for optimal performance.
Build a TikTok Clone with React and Firebase
TikTok is in the news a lot these days. Not just because it’s the current burning center of the the social media universe but also because it has become something of a political football in some parts of the world. Rumors of its shutdown or sale abound. Might that create an opportunity for you build a TikTok clone and become the next social media fad? - http://amp.gs/LFIq
#react
TikTok is in the news a lot these days. Not just because it’s the current burning center of the the social media universe but also because it has become something of a political football in some parts of the world. Rumors of its shutdown or sale abound. Might that create an opportunity for you build a TikTok clone and become the next social media fad? - http://amp.gs/LFIq
#react
CodeSource.io
Build a TikTok Clone with React and Firebase
In this article, we will build our TikTok clone with React and firebase, and also we will explore the cool feature of React hooks.
Telegraf: A Modern Telegram Bot Framework for Node
I’ve not used this library yet, but Telegram is a pretty good messaging system to write bots or automated clients for as it has a solid API, and this project seems incredibly thorough. - http://amp.gs/LXIs
#nodejs
I’ve not used this library yet, but Telegram is a pretty good messaging system to write bots or automated clients for as it has a solid API, and this project seems incredibly thorough. - http://amp.gs/LXIs
#nodejs
GitHub Actions & Angular 10/9: Install Node.js, Angular CLI and Deploy your App to GitHub Pages
In this example, we'll see how to use Github Actions to install Node.js and Angular CLI 10 and then build and deploy our Angular 10 application or any previous version to GitHub pages. - http://amp.gs/LLIQ
#angular
In this example, we'll see how to use Github Actions to install Node.js and Angular CLI 10 and then build and deploy our Angular 10 application or any previous version to GitHub pages. - http://amp.gs/LLIQ
#angular
Techiediaries
GitHub Actions & Angular 10/9: Install Node.js, Angular CLI and Deploy your App to GitHub Pages | Techiediaries
In this quick example, we'll see how to use Github Actions to install Node.js and Angular CLI and deploy our Angular application to GitHub pages
Linearly Scale font-size with CSS clamp() Based on the Viewport
Pedro Rodriguez explores how to linearly scale text between a set of minimum and maximum sizes as the viewport’s width increases, with the intent of making its behavior at different screen sizes more predictable using clamp(). - http://amp.gs/LLLi
#css
Pedro Rodriguez explores how to linearly scale text between a set of minimum and maximum sizes as the viewport’s width increases, with the intent of making its behavior at different screen sizes more predictable using clamp(). - http://amp.gs/LLLi
#css
CSS-Tricks
Linearly Scale font-size with CSS clamp() Based on the Viewport | CSS-Tricks
Responsive typography has been tried in the past with a slew of methods such as media queries and CSS calc().
Testing an HTML Canvas with Cypress
An example of setting up basic visual regression testing with Cypress. - http://amp.gs/LWWp
#javascript #testing #cypress
An example of setting up basic visual regression testing with Cypress. - http://amp.gs/LWWp
#javascript #testing #cypress
Valentinog
Testing an HTML canvas with Cypress
How to test an HTML canvas? Let's see an example of visual regression testing with Cypress.
Switching to Redux Hooks
Given that Hooks are still a fairly new concept, their use has not yet found its way into every tutorial. This articles take an example from Brad Traversy’s well-regarded MERN Stack Front To Back Udemy course and re-creates it using Redux Hooks - http://amp.gs/LaoY
#react
Given that Hooks are still a fairly new concept, their use has not yet found its way into every tutorial. This articles take an example from Brad Traversy’s well-regarded MERN Stack Front To Back Udemy course and re-creates it using Redux Hooks - http://amp.gs/LaoY
#react
How to build a TWA Android app out of your Nuxt.js PWA
Did you know that you can package your progressive web app (PWA) in an Android app and publish it on the Google Play Store? Well, you can. This way, mobile users will be able to find it and download it, and everything will behave like in a native application. Personally, I wasn’t aware of this until I came across the TWA acronym, which means: trusted web activity. - http://amp.gs/Lo3I
#vue
Did you know that you can package your progressive web app (PWA) in an Android app and publish it on the Google Play Store? Well, you can. This way, mobile users will be able to find it and download it, and everything will behave like in a native application. Personally, I wasn’t aware of this until I came across the TWA acronym, which means: trusted web activity. - http://amp.gs/Lo3I
#vue
LogRocket Blog
How to build a TWA Android app out of your Nuxt.js PWA - LogRocket Blog
This tutorial shows you how to build a TWA Android app using a Nuxt.js PWA and upload it to the Google Play Store without using JavaScript.
How to CSS in Ionic React with Styled Components
Styled Components is a library that aims to ease some of the difficulty developers face when styling React components. - http://amp.gs/LMXv
#ionic
Styled Components is a library that aims to ease some of the difficulty developers face when styling React components. - http://amp.gs/LMXv
#ionic
DEV Community
How to CSS in Ionic React with Styled Components
When it comes to writing CSS in a React app, there are numerous options to choose from. And many peop...
Achieving Vertical Alignment (Thanks, Subgrid!)
Cathy Dutton demonstrates how to achieve vertical alignment using subgrid. - http://amp.gs/LQ7m
#css
Cathy Dutton demonstrates how to achieve vertical alignment using subgrid. - http://amp.gs/LQ7m
#css
CSS-Tricks
Achieving Vertical Alignment (Thanks, Subgrid!) | CSS-Tricks
Our tools for vertical alignment have gotten a lot better as of late. My early days as a website designer involved laying out 960px wide homepage designs and
Creating Extensions for Visual Studio Code: An Introduction
If you want to extend one of the most popular editors out there. - http://amp.gs/LQLo
#javascript #vscode
If you want to extend one of the most popular editors out there. - http://amp.gs/LQLo
#javascript #vscode
Watch with @vue/reactivity - Anthony Fu
A brief intro to how the Vue reactivity system works and a guide to implementing the (missing) `watch` on your own. - http://amp.gs/Lc9Q
#vue
A brief intro to how the Vue reactivity system works and a guide to implementing the (missing) `watch` on your own. - http://amp.gs/Lc9Q
#vue
antfu.me
Watch with @vue/reactivity
A brief intro of how it works and a guide to implementing the (missing) `watch` on your own.
Building React Apps with Storybook
We have featured a number of articles on Storybook over the past few issues but none of them illustrated its use through a full cycle of development in the quite the way this article does. - http://amp.gs/Lcoe
#react
We have featured a number of articles on Storybook over the past few issues but none of them illustrated its use through a full cycle of development in the quite the way this article does. - http://amp.gs/Lcoe
#react
Smashing Magazine
Building React Apps With Storybook — Smashing Magazine
In this article, you will learn how to build and test React components in isolation using Storybook. You will also learn how to use the knobs add-on to modify data directly from the storybook explorer.