Skip to main content

13 posts tagged with "frontend"

View all tags

Keep your libraries up to date with npm-check

· 2 min read
Bruno Carneiro
Fundador da @TautornTech

One of the hardest things in a Node project is keeping libraries up to date. Anyone who works with package management using Node knows exactly what I am talking about. In production, a project can easily scale its libraries — and consequently the sub-dependencies that come along — making the task of keeping everything updated quite challenging.

Problem when updating a version that a dependency does not support

· 3 min read
Bruno Carneiro
Fundador da @TautornTech

Keeping a codebase up to date can become difficult as the project grows and new features and libraries are added.

Throughout a project's lifetime, minor and patch updates are very common in libraries and, in most cases, do not cause any trouble — they are even transparent to the development team.

15 tips to improve your development with React

· 8 min read
Bruno Carneiro
Fundador da @TautornTech

I have been working with React for many years and have gathered here some tips I picked up throughout my journey across various projects.

These are useful both for improving project development and for career growth.


1 - Learn JavaScript

That's right — React is "just" a User Interface library and much of what you use day to day is, simply, JavaScript.

A lack of understanding of JavaScript can cause many problems when trying to understand React and its structure. Study JavaScript.

The use of imports, lists, iterations, and other methods are mandatory in day-to-day work. Not just for those who develop with React, but for any web application.

Here I have a list of JavaScript versions:
https://www.tautorn.com.br/docs/javascript/versions/introducao

Front-end Performance

· 7 min read
Bruno Carneiro
Fundador da @TautornTech

Introduction

This is a very important topic because it directly impacts how an application is presented to the user. If this topic is neglected, no matter how good your site or application's purpose is, it may end up suffering from slowness and unnecessary resource usage, affecting the end user — who may give up on using the application altogether. Imagine an e-commerce site where product pages load slowly; you would certainly give up on continuing to use it.

Web application optimization is something fundamental that is often overlooked. Performance improvement aims for speed, responsiveness, smoothness, resource efficiency, and much more. There are various strategies to minimize page load times and reduce server response times, making the system much more appealing to the end user.

There are many ways to approach this topic. In this article, I bring some key areas that are very relevant for making your application more efficient, with smarter resource usage, and delivering all the speed and reliability benefits to the end user.

Docusaurus - Integration with Tailwindcss

· 6 min read
Bruno Carneiro
Fundador da @TautornTech

This is a tutorial for those who, like me, love working with Docusaurus and want to take full advantage of Tailwind CSS.

Well, you can't keep writing CSS by hand every time you need to align a div, add rounded borders, and all those other repetitive things. Not to mention the time that takes — time we could be spending on what really matters: shipping features, building things, or in my case, writing this content for you =D.

Software Architecture

· 19 min read
Bruno Carneiro
Fundador da @TautornTech

Software Architecture

Infrastructure for Credit](https://cdn-images-1.medium.com/max/2000/1*gAvcIkpA_3emvVIcLEq6tQ.png)

When we talk about Software Architecture it is common to reference the main aspects of the design of a software system. Architecture is something very important and has the power to make a project/company a success or a great failure, depending on how it was planned and executed.

In this article I will discuss Software Architecture, its importance, risks, and what impact it has on your product/service/business.