Tag: Nodejs
-
How to improve JWT performance in Node.js
Posted on July 1, 2020, Level advanced Resource Length long
Each operation, even the smallest one, counts towards the performance and availability of a service. High performance and availability must be maintained without compromising the security of the system. By Paolo Insogna @nearform.com.
Tags app-development infosec nodejs javascript
-
Esbuild JavaScript bundler claims 10-100x faster bundling time
Posted on June 26, 2020, Level beginner Resource Length short
esbuild, a JavaScript bundler and minifier, seeks to bring order-of-magnitude speed improvements in the JavaScript bundling and minification process. esbuild achieves its speed by being written in Go compiled to native code, parallelizing tasks to leverage multi-core processors, and minimizing data transformations. By Bruno Couriol for infoq.com.
Tags javascript frontend nodejs devops programming
-
Do not follow JavaScript trends
Posted on June 16, 2020, Level beginner Resource Length long
What to do when you feel a sudden urge to use shiny new trendy framework or tool. You may ping your team lead or send a message to your whole team about this cool new way of doing things, and you suggest that you start using it. The idea of having to learn something new is good, and I agree with that, but how often should you do that? Written by Nikola Đuza.
Tags javascript nodejs web-development programming cio agile
-
How to deploy Deno applications to production
Posted on June 9, 2020, Level beginner Resource Length short
In this tutorial, you will be creating a simple Deno application to display hello world. Unlike NodeJS, you do not need to run npm init to create a new application. You can simply create a TypeScript file and start coding away. By Michael Okoh.
Tags javascript open-source nodejs devops
-
Functional error handling with Express.js and DDD | Enterprise Node.js + TypeScript
Posted on June 6, 2020, Level intermediate Resource Length long
How to expressively represent (database, validation and unexpected) errors as domain concepts using functional programming concepts and how to hook those errors up to our Express.js base controller. By Khalil Stemmler, a developer advocate at Apollo GraphQL.
Tags nodejs javascript frontend web-development
-
JAMstack step by step tutorial to create a website with just clicks and no code at all for free
Posted on June 4, 2020, Level intermediate Resource Length long
This JAMstack tutorial will show you how to create a JAMstack website with just clicks, no code and for $0. It will detail how to set up a JAMstack website step by step with 30+ screenshots and 2000+ words. It will involve using a git-based CMS service to edit your content easily. Let's get started. By Geshan Manandhar.
Tags nodejs javascript web-development
-
Under the hood of the Angular Compatability Compiler(ngcc)
Posted on May 17, 2020, Level beginner Resource Length medium
In this artice, we will explore how angular makes non Ivy libraries compatible with Ivy libraries using its compatability compiler ngcc. By Ajit Singh.
Tags frontend web-development angular nodejs javascript
-
Angular platforms in depth. Rendering Angular applications in terminal
Posted on May 6, 2020, Level intermediate Resource Length medium
The Angular framework was designed with flexibility in mind. That approach allows Angular applications to be executed across different environments — browser, server, web-worker, and even mobile devices are possible. Written by Nikita Poltoratsky, a Solution Architect at Akveo, open-source contributor and tech author.
Tags angular nodejs javascript web-development
-
Build a Node.js tool to record and compare Google Lighthouse reports
Posted on April 3, 2020, Level intermediate Resource Length long
In this tutorial, Luke Harrison shows you step by step how to create a simple tool in Node.js to run Google Lighthouse audits via the command line, save the reports they generate in JSON format and then compare them so web performance can be monitored as the website grows and develops.
Tags web-development open-source nodejs
-
Graphql vs REST: Which one is better? (2020)
Posted on March 30, 2020, Level beginner Resource Length long
When you need to build an API, your mind will likely jump to REST, the de facto standard for API creation. However, this is changing with the increase of GraphQL popularity. This post was originally posted in May 2019 and updated in March 2020. Published by João Inez on imaginarycloud.com.
Tags apis nodejs web-development software-architecture
-
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
-
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