Tag: Nodejs
-
How serverless saved money on my heating bill
Posted on January 5, 2022, Level beginner Resource Length medium
Built a serverless application as a weekend project to help me save money on my heating bill. In doing so, I experienced something great about building websites in 2022. By Cameron McHenry.
Tags analytics serverless javascript nodejs app-development open-source how-to
-
Fundamentals of functional programming with React
Posted on December 31, 2021, Level intermediate Resource Length medium
Understanding the concept of functional programming is a valuable skill for React developers. It is an important topic that most React beginners often overlook, making them encounter problems when understanding how React makes some of its decisions. By Ibadehin Mojeed.
Tags functional-programming react nodejs web-development javascript
-
Comparing SPAs to SSG and SSR
Posted on December 22, 2021, Level beginner Resource Length medium
What are the differences between Single Page Apps (SPA), Server Side Rendered Sites (SSR), and Static Site Generator based sites (SSG)? How do they compare in performance, SEO, developer experience, and flexibility? In this article, we give you an in-depth comparison of SPA, SSR, and SSG to help you make an informed decision on which strategies to use for your next front-end project. By Jacob Jackson.
Tags frontend css web-development angular javascript nodejs react
-
Write function overloads using JSDoc and TypeScript
Posted on November 1, 2021, Level beginner Resource Length medium
I like TypeScript, but I prefer the JSDoc syntax for writing it. That should be obvious if you've read any of my JavaScript articles, especially Get Started With TypeScript the Easy Way. By Austin Gil.
Tags javascript app-development web-development nodejs
-
How to cancel an HTTP request in Node.js
Posted on October 21, 2021, Level intermediate Resource Length medium
If you're making an HTTP request in Node.js there's a good chance you'll want to cancel it if it takes too long to receive a response. Or perhaps you have a slightly more complex situation where you're making multiple requests in parallel, and if one request fails you want to cancel all of them. By Simon Plenderleith.
Tags devops nodejs javascript web-development open-source app-development
-
Investigate Node.js high CPU issue in Linux app service
Posted on October 11, 2021, Level advanced Resource Length medium
When running your Node.js application in Azure Linux App Service, you may encounter High CPU consumption issue. By Hanli_Ren.
Tags linux nodejs performance app-development azure
-
JSON Schema bundling finally formalised
Posted on September 14, 2021, Level intermediate Resource Length medium
OpenAPI has long since put the spotlight on JSON Schema, and the release of OpenAPI 3.1 has huge implications for the future of both projects. Truly exciting! By Ben Hutton & Mike Ralphson.
Tags json nodejs javascript app-development web-development
-
How to write NPM package without publishing to Git/NPM
Posted on September 13, 2021, Level intermediate Resource Length short
Want to write an npm package without publishing to npm or git? And be able to use it in a project? Well, keep reading! By Tomas Nilsson.
Tags nodejs javascript app-development web-development
-
Developer best practices – Structuring your repository for static web apps
Posted on August 12, 2021, Level beginner Resource Length short
As a good developer, I have my code in a repo, that doesn't necessarily mean that I have followed all of the best practices that I should. I can still expose myself to risks unknowingly. By April Edwards.
Tags app-development web-development cloud azure nodejs
-
Getting started with state management in Flutter
Posted on July 14, 2021, Level beginner Resource Length medium
Flutter is great for making beautiful cross-platform UIs with its everything is a widget concepts. But how do you actually move data around your application. By Jay Hackett.
Tags app-development how-to nodejs android ios google
-
What is Recursion? A recursive function explained with JavaScript code examples
Posted on June 27, 2021, Level beginner Resource Length long
Recursion is a technique used to solve computer problems by creating a function that calls itself until your program achieves the desired result. By Nathan Sebhastian.
Tags programming nodejs javascript app-development learning
-
Lazy-loading React components - no rocket science
Posted on June 1, 2021, Level intermediate Resource Length medium
Welcome to the world of code-splitting where you can lazy-load (dynamically) your JavaScript bundle dynamically, only when the user requested it. By Amandeep Singh.
Tags app-development web-development nodejs frontend