Tag: Javascript
-
Angular: Keeping it Fat, Dumb, and Happy
Posted on March 12, 2020, Level intermediate Resource Length long
Todd Palmer published this article about an architectural approach to better Angular applications. The article shows you how to keep your Templates declarative and dumb, your Components thin and smart, and your Services fat and happy.
Tags web-development angular nodejs javascript
-
Understand RxJS Subjects
Posted on March 11, 2020, Level beginner Resource Length medium
If you are an Angular developer there is no way you missed RxJS Observables but you might be less familiar with Subjects. Even though they are less frequent than simple Observables, they are extremely useful. Understanding them will help you write better, cleaner reactive code. By Dornhoth.
Tags web-development react javascript
-
Five misconceptions on how NodeJS works
Posted on February 29, 2020, Level intermediate Resource Length long
NodeJS was born in 2009 and it has gained massive popularity throughout the years because of one reason. It's just JavaScript! Well, it's a JavaScript runtime designed to write server-side applications, but the statement that "It's just JavaScript" is not 100% true. By Deepal Jayasekara.
Tags javascript nodejs programming
-
Securing Firefox with WebAssembly
Posted on February 28, 2020, Level advanced Resource Length medium
Protecting the security and privacy of individuals is a central tenet of Mozilla's mission, and so they constantly endeavor to make their users safer online. With a complex and highly-optimized system like Firefox, memory safety is one of the biggest security challenges. By Nathan Froyd.
Tags programming infosec miscellaneous javascript
-
3 strategies for migrating from Wordpress to JAMstack
Posted on February 25, 2020, Level beginner Resource Length long
Brian Rinaldi published this article in which he describes the strategies for migration to JAMstack from an existing CMS architecture.
Tags javascript web-development open-source cloud
-
7 ways to remove duplicates from an array in JavaScript
Posted on February 19, 2020, Level beginner Resource Length medium
Jayanth Babu wrote this article about how to remove duplicates from an array in JavaScript. It's a common use case in many projects to need to remove duplicates from array in JavaScript. For interviews, it's a common coding challenge to practice for everyone.
Tags nodejs javascript web-development programming
-
TypeScript's secret parallel universe
Posted on January 27, 2020, Level beginner Resource Length medium
Florian Reuschel put together this tutorial for new TypeScript users. He focuses on one of the most underreported topics in the TypeScript tutorial world: the type scope.
Tags javascript web-development nodejs
-
Successfully porting complex data-driven frontends to React with GraphQL
Posted on January 25, 2020, Level intermediate Resource Length short
When porting existing code to React, there is a couple of things to look out for. This article shares my experience while porting a section of a Rails app to React and consuming data through GraphQL. By Neel Barthel.
Tags react nodejs javascript apis web-development
-
Building Angular CLI projects with Github Actions
Posted on January 24, 2020, Level intermediate Resource Length medium
The Angular CLI provides all the built tools out of the box to create, build, and test Angular applications. In this post, we will build a continuous integration (CI) build system using Github Actions. By Cory Rylan.
Tags angular nodejs javascript
-
8 console API functions other than console.log()
Posted on January 14, 2020, Level beginner Resource Length medium
An in-depth guide to some important console API functions other than console.log. By Deepak Gupta.
Tags javascript devops functional-programming
-
Clean code applied to JavaScript - Part III. Functions
Posted on January 13, 2020, Level beginner Resource Length medium
Carlos Caballero published this story about fundamental tips and advice to generate clean code focusing on the element that allows us to reuse our code: the functions.
Tags javascript programming functional-programming
-
Build and secure a GraphQL server with Node.js
Posted on January 7, 2020, Level beginner Resource Length long
A tutorial from the pen of Roy Derks. Learn how to handle authentication and authorization of a GraphQL server using Node.js and JWTs.
Tags javascript infosec web-development nodejs nosql