Author image

Slynova.io

Sharing thoughts, ideas and knowledge.

Why & How to Make the Heaviest Resource in the Web Lighter?

JavaScript is one of the heaviest resources on the web. The reason is that your code is not only downloaded by the browser, but it must also be parsed and executed. This is why a 100kBB image isn't equal to a 100kB JavaScript file.

Link

Create a Simple Cache System

One of the most straightforward optimization you can do to speed up your application is to use a cache to avoid hefty data computation, database queries or API calls.

Link

Deploy your Adonis website

People often assume that any developers must know how to deploy an application to a remote server. The real case is that a lot of people aren't comfortable to push a website to production.

Link