Frontend Weekly (@frontendweekly1) 's Twitter Profile
Frontend Weekly

@frontendweekly1

The best of frontend development updates delivered weekly to your inbox.

ID: 738426714079002624

linkhttp://www.frontendweekly.co calendar_today02-06-2016 17:47:02

8,8K Tweet

2,2K Takipçi

1,1K Takip Edilen

Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

That Action — Reducer pattern instantly gained traction among React programmers. Read the full article: You may not need Redux ▸ social.frontendweekly.co/sZVsVc8h #Programming #JavaScript

That Action — Reducer pattern instantly gained traction among React programmers.

Read the full article: You may not need Redux
▸ social.frontendweekly.co/sZVsVc8h

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Inside a redux app there is one particular function that takes the previous state and the action being dispatched, and returns the next state of the application. Read the full article: Vanilla Redux ▸ social.frontendweekly.co/-olWzEUG #JavaScript #Programming

Inside a redux app there is one particular function that takes the previous state and the action being dispatched, and returns the next state of the application.

Read the full article: Vanilla Redux
▸ social.frontendweekly.co/-olWzEUG

#JavaScript #Programming
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Inside /src/server/index.js , add the following Read the full article: Getting Started: React app with Express server ▸ social.frontendweekly.co/xvv_6S1k #Programming #JavaScript

Inside /src/server/index.js , add the following

Read the full article: Getting Started: React app with Express server
▸ social.frontendweekly.co/xvv_6S1k

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

In order to create an “outline” for text, we would need to use the CSS property: -webkit-text-stroke-width and -webkit-text-stroke-color Read the full article: 9 fancy title design in CSS you need to learn now ▸ social.frontendweekly.co/KJ4GEUOz #JavaScript #Programming

In order to create an “outline” for text, we would need to use the CSS property: -webkit-text-stroke-width and -webkit-text-stroke-color

Read the full article: 9 fancy title design in CSS you need to learn now
▸ social.frontendweekly.co/KJ4GEUOz

#JavaScript #Programming
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

The autofocus prop lets us set the focus of the dropdown select. Read more 👉 social.frontendweekly.co/HUhrjyu7 #Programming #JavaScript

The autofocus prop lets us set the focus of the dropdown select.

Read more 👉 social.frontendweekly.co/HUhrjyu7

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

The whole form group is shrunk because the size prop is set to 'sm' Read more 👉 social.frontendweekly.co/1KrdC0dP #Programming #JavaScript

The whole form group is shrunk because the size prop is set to 'sm'

Read more 👉 social.frontendweekly.co/1KrdC0dP

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Some say this is callback hell, but we only went a couple layers deep so it’s really more like callback purgatory. Read the full article: Promises in Node.js 8.x Core ▸ social.frontendweekly.co/u_iFO4u1 #Programming #JavaScript

Some say this is callback hell, but we only went a couple layers deep so it’s really more like callback purgatory.

Read the full article: Promises in Node.js 8.x Core
▸ social.frontendweekly.co/u_iFO4u1

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Garbage collection detects and reclaims inaccessible memory objects, in order to free up memory. Read the full article: My Node.js memory leak and some memory management and garbage collection ▸ social.frontendweekly.co/5J9WG-LU #Programming #JavaScript

Garbage collection detects and reclaims inaccessible memory objects, in order to free up memory.

Read the full article: My Node.js memory leak and some memory management and garbage collection
▸ social.frontendweekly.co/5J9WG-LU

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Whereas framework such as React have a sophisticated build system that disables various checks and error for production deployments, various browser-specific optimizations. Read the full article: The beauty of simplicity ▸ social.frontendweekly.co/1xbhscyK #Programming #JavaScript

Whereas framework such as React have a sophisticated build system that disables various checks and error for production deployments, various browser-specific optimizations.

Read the full article: The beauty of simplicity
▸ social.frontendweekly.co/1xbhscyK

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

As I was dabbling into creating a login feature for a chat messenger, I ran into an issue in implementing bcrypt in a react component. Read more 👉 social.frontendweekly.co/78FbMkpM #Programming #JavaScript

As I was dabbling into creating a login feature for a chat messenger, I ran into an issue in implementing bcrypt in a react component.

Read more 👉 social.frontendweekly.co/78FbMkpM

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Interface TodosListProps { todos: TodoEntity[]; addTodo: (todo: TodoEntity) => void; search: TodosSearchProps;} Read more 👉 social.frontendweekly.co/yw5rNIEq #Programming #JavaScript

Interface TodosListProps { todos: TodoEntity[]; addTodo: (todo: TodoEntity) => void; search: TodosSearchProps;}

Read more 👉 social.frontendweekly.co/yw5rNIEq

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

There are many different ways that we can use one-way data binding in our Angular application. Read more 👉 social.frontendweekly.co/5A5J_3cZ #Programming #JavaScript

There are many different ways that we can use one-way data binding in our Angular application.

Read more 👉 social.frontendweekly.co/5A5J_3cZ

#Programming #JavaScript
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Data sharing between components is an essential knowledge that everyone should have before starting their first Angular application. Read the full article: Sharing Data Between Angular Components ▸ social.frontendweekly.co/npXlGNMC #JavaScript #Programming

Data sharing between components is an essential knowledge that everyone should have before starting their first Angular application.

Read the full article: Sharing Data Between Angular Components
▸ social.frontendweekly.co/npXlGNMC

#JavaScript #Programming
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Lazy loading technique is very useful when we break down our angular application module wise. Read the full article: Angular Lazy Loading ▸ social.frontendweekly.co/qEcdCbBL #JavaScript #Programming

Lazy loading technique is very useful when we break down our angular application module wise.

Read the full article: Angular Lazy Loading
▸ social.frontendweekly.co/qEcdCbBL

#JavaScript #Programming
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

We should add an optional total input that accepts a number, so we know what to compare the progress input to. Read more 👉 social.frontendweekly.co/z0gtekKI #JavaScript #Programming

We should add an optional total input that accepts a number, so we know what to compare the progress input to.

Read more 👉 social.frontendweekly.co/z0gtekKI

#JavaScript #Programming
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

Easy Guide to Integrating Facebook Login with Flutter (Android) Read the full article: Easy Guide to Integrating Facebook Login with Flutter (Android) ▸ social.frontendweekly.co/03FcYd6z #JavaScript #Programming

Easy Guide to Integrating Facebook Login with Flutter (Android)

Read the full article: Easy Guide to Integrating Facebook Login with Flutter (Android)
▸ social.frontendweekly.co/03FcYd6z

#JavaScript #Programming
Frontend Weekly (@frontendweekly1) 's Twitter Profile Photo

When you declare a variable in a function, that variable is only visible within the function. Read the full article: Get Familiar with JavaScript Scope ▸ social.frontendweekly.co/fm4U5iqd #Programming #JavaScript

When you declare a variable in a function, that variable is only visible within the function.

Read the full article: Get Familiar with JavaScript Scope
▸ social.frontendweekly.co/fm4U5iqd

#Programming #JavaScript