Tag: Web development
-
Chrome extension with Angular -- from zero to a little hero
Posted on September 28, 2019, Level intermediate Resource Length long
An article by JeB Barabanov in which he explores the process of developing a Chrome extension with Angular. Start from scratch with ng new and finishing with fully functional Chrome extension.
Tags javascript web-development browsers frontend
-
Object creation patterns in JavaScript
Posted on September 27, 2019, Level beginner Resource Length medium
Kunal Tandon wrote about his run through of the four patterns in JavaScript. To create objects in JS, there are various patterns that can be followed.
Tags javascript web-development oop functional-programming
-
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
-
Build a tree-shaking utility in JavaScript
Posted on September 23, 2019, Level intermediate Resource Length long
A guide with clear instructions how to build your own "dead code" remover in JavaScript. By Chidume Nnamdi.
Tags javascript web-development programming performance
-
Profile a React app for performance
Posted on September 22, 2019, Level intermediate Resource Length medium
Kent C. Dodds wrote this piece about how to use the React DevTools and React's profiling build to properly profile a production app.
Tags react javascript web-development
-
The great serverless cost debate
Posted on September 21, 2019, Level beginner Resource Length long
An older article by John Demian about thecost of switching to serverless. He points out that there are many ways to track and lower the costs of your serverless operation without slowing down your business.
Tags serverless web-development devops miscellaneous
-
How to build a serverless web crawler
Posted on September 19, 2019, Level intermediate Resource Length medium
James Beswick wrote this piece about how to use serverless to scale an old concept for the modern era. It describes a client project which involved the need to crawl a large media site to generate a list of URLs and site assets.
Tags serverless containers cicd web-development
-
Full text search with Node.js and ElasticSearch on Docker
Posted on September 18, 2019, Level intermediate Resource Length long
An article by Michele Riva about building the search engine for simple REST API using Node.js and ElasticSearch. ElasticSearch is a search engine server built on top of Lucene with an amazing distributed-architecture support.
Tags search servers apache 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
-
AWS Lambda: how to share code between functions in a monorepo
Posted on September 1, 2019, Level beginner Resource Length short
Yan Cui put together this tutorial about sharing business logic between services in a Node.js monorepo.
Tags serverless containers aws web-development javascript