Tag: Nodejs
-
Testing dynamic forms in Angular
Posted on November 25, 2019, Level beginner Resource Length medium
Learn how to create a dynamic form in Angular and then create tests for the form to ensure it works as expected. Blog post by Christian Nwamba.
Tags nodejs javascript web-development angular
-
Composing Angular Components with Typescript Mixins
Posted on November 24, 2019, Level intermediate Resource Length medium
Blog post by Giancarlo Buomprisco on how to learn to maximize reusability in your Angular components by using composition instead of inheritance.
Tags nodejs javascript web-development
-
Promises in Javascript: Complete Guide for 2019
Posted on November 3, 2019, Level intermediate Resource Length medium
Promises are an important concept that is essential for a JavaScript developer to understand. If this concept is clear, the developer can utilize promises in a variety of ways in their day-to-day lives. An article by Nilesh Sanyal.
Tags javascript nodejs app-development
-
Fastest way to cache for lazy developers: Angular with RxJS
Posted on November 2, 2019, Level intermediate Resource Length medium
Dler Ari is author of this piece about HTTP caching and Angular. HTTP caching simply means the browser stores local copies of web resources for faster retrieval the next time the resource is required, thus reducing the number of server calls.
Tags angular nodejs javascript
-
From REST to GraphQL: Different way to create API (with Apollo & Node.js)
Posted on October 31, 2019, Level intermediate Resource Length long
Dirk Wolthuis wrote this tutorial about moving from REST to GraphQL. If you already have a MySQL database you have an excellent starting point for creating a scalable API.
Tags apis nodejs javascript web-development nosql restful
-
How to make your Angular 8 forms reactive
Posted on October 7, 2019, Level intermediate Resource Length short
Angular provides two main approaches to handling forms -- the template-driven method and the model-driven method which involves reactive forms. This article focuses on reactive forms. By Nwose Lotanna.
Tags javascript nodejs performance
-
Build a PWA using only vanilla JavaScript
Posted on October 6, 2019, Level beginner Resource Length medium
Sayan Mondal wrote this article on building progressive web app. A Progressive Web App (PWA) works like any other normal app but with a lot of added features and a lot less hassle. They are fast, reliable, and can work perfectly in an offline environment.
Tags javascript programming nodejs teams app-development
-
Add authentication and authorization to Next.js 8 serverless apps using JWT and GraphQL
Posted on September 25, 2019, Level intermediate Resource Length short
An article describing how to deploy a Node.js Express JWT service for authenticating requests to Hasura GraphQL Engine. Written by Praveen Durairaj.
Tags nodejs javascript web-development
-
Monkey patching TLS in Node.js to support self-signed certificates with custom root certificate authorities
Posted on September 10, 2019, Level intermediate Resource Length medium
David Barral wrote this detailed guide on updating TLS (Transport Layer Security) in Node.js and how to consume services that have been secured with self-signed certificates.
Tags nodejs infosec web-development app-development
-
Leveraging the Dependency Injection support in Azure Functions
Posted on September 3, 2019, Level intermediate Resource Length long
Cecil Phillip, Rich Lander are authors of this video in which they walk you though dependency injection for Azure functions (serverless). The latest update to Azure Functions v2 now has support for registering services with DI.
Tags azure open-source cloud nodejs web-development serverless
-
A deep dive into Hot Module Replacement with Webpack
Posted on September 2, 2019, Level intermediate Resource Length short
An article by Stanimira Vlaeva about Hot Module Replacement with webpack. webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser.
Tags web-development javascript react nodejs app-development
-
How to implement worker threads in Node.js
Posted on August 23, 2019, Level intermediate Resource Length short
An article by Ganeshmani P about implementation of worker threads in Node.js. After the release of Node.js V10.5.0, Worker Threads are available in the Node.js module.
Tags nodejs javascript web-development programming