Tag: 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
-
Best practices for Node.js security
Posted on May 15, 2021, Level beginner Resource Length medium
Like any other programming language or framework, Node.js is susceptible to every type of web app exposure. Although the basis of Node.js is secure, third-party packages may need more security standards to safeguard your web app. The study says that 14% of the NPM (Node Package Manager) ecosystem is impacted and 54% of the NPM ecosystem is about to be impacted indirectly. By Kiran Malvi.
Tags infosec web-development nodejs javascript
-
Why you should not use webpack
Posted on May 9, 2021, Level beginner Resource Length medium
Webpack is one of the most popular bundlers around today. Tons of production apps and frameworks, such as Next.js, Create React App, and more, use it for bundling and building. Additionally, it has the largest library of plugins out of any bundler. However, times have changed since Webpack's inception, and now it is not the best tool for lots of cases. By AsyncBanana.
Tags nodejs javascript performance containers cicd
-
Exploring Typescript: Interfaces, Types & Classes
Posted on April 23, 2021, Level intermediate Resource Length medium
Typescript is a superset of Javascript, which means that all Javascript is syntactically valid Typescript. However, Typescript's power comes from its strict typing of objects. By Two Devs in a Pod.
Tags javascript app-development nodejs frontend web-development
-
Using Eleventy to host your blog
Posted on March 19, 2021, Level beginner Resource Length short
Blogs don't need to be dynamic. Technically, it doesn't make sense to pull data out of a database when a page is requested. Instead, it makes more sense to create the pages (HTML) beforehand (during the build process). By Sahil Parikh.
Tags app-development web-development frontend nodejs javascript