How to Create and Deploy Your First Eleventy Website
Learn how to build a website with Eleventy (11ty), a static site generator that gives you simplicity and flexibility.
Learn how to build a website with Eleventy (11ty), a static site generator that gives you simplicity and flexibility.
O autor selecionou a Creative Commons para receber uma doação como parte do programa Write for DOnations. Neste tutorial, você aprenderá como descrever elementos com o JSX. O JSX é uma abstração que permite que…
El autor seleccionó Creative Commons para recibir una donación como parte del programa Write for DOnations. A través de este tutorial, creará componentes personalizados pasando props a su componente. Los props…
A function is a block of instructions that, once defined, both performs an action once the function is called and makes that action available for later use. Functions make code more modular, allowing you to use the same code over and over again. In this tutorial, we’ll go over how to define your own functions to use in your coding projects.
L’auteur a choisi Mozilla Foundation pour recevoir un don dans le cadre du programme Write for Donations. Comme la demande de développement full-stack continue de croître, les…
Code quality is an approximation of how useful and maintainable a specific piece of code is. Quality code will make the task of maintaining and expanding your application easier. In this guide, you will deploy a SonarQube server and scanner to analyze your code and create code quality reports. Then you’ll perform a test on your machine by scanning it with the SonarQube tool.
To avoid slowing down the request/response circle, you can use bullmq, a distributed task queue that allows you to offload time-consuming tasks from your Node.js app. To keep track of jobs, bullmq uses Redis to store a short description of each job in a queue. In this article, you will use bullmq to offload a time-consuming task into the background, which will enable an application to respond quickly to users.
In diesem Tutorial lernen wir den Unterschied zwischen Zeichenfolgenprimitiven und dem Zeichenfolgenobjekt kennen, wie Zeichenfolgen indiziert werden, wie auf Zeichen in einer Zeichenfolge zugegriffen wird und welche allgemeinen Eigenschaften und Methoden für Zeichenfolgen verwendet werden.
Django ist ein kostenloses und Open-Source-basiertes Framework, das in Python geschrieben ist und dessen Grundprinzipien Skalierbarkeit, Wiederverwendbarkeit und schnelle Entwicklung sind. Es ist auch für seine hohe Konsistenz auf Framework-Ebene und lose Kopplung bekannt, was…
undefined