Материалы по теме 'node' | DevsDay.ru

IT-блоги Материалы по теме 'node'

IT-блоги Материалы по теме 'node'


Разработка dev.to 19 мая 2024 г. 22:56

This article isn't what you think it is. This is not a deep exploration of this amazing data structure, nor is it a beginner's guide explaining the properties or a walkthrough of the code. NO! This article talks about a personal experience I had whil...... читать далее

dsa datastructures cpp computerscience

Разработка dev.to 19 мая 2024 г. 19:07

3068. Find the Maximum Sum of Node Values Hard There exists an undirected tree with n nodes numbered 0 to n - 1. You are given a 0-indexed 2D integer array edges of length n - 1, where edges[i] = [ui, vi] indicates that there is an edge between nod...... читать далее

php leetcode algorithms programming

Разработка dev.to 19 мая 2024 г. 19:01

In this tutorial, you will learn how I increased the flexibility and performance of my Astro-powered blog by integrating Couchbase. We will walk through the step-by-step process in transforming your Astro static blog into one that leverages a NoSQL d...... читать далее

tutorial webdev database

Разработка dev.to 19 мая 2024 г. 17:49

Table of Contents for Article on Kubernetes 1. Introduction to Kubernetes Overview of container orchestration Benefits of using Kubernetes 2. Kubernetes Architecture Master and Worker Nodes Control Plane Components Data Plane Components 3...... читать далее

beginners kubernetes devops networking

Разработка dev.to 19 мая 2024 г. 17:36

Introduction Have you ever hovered over a navigation link on a site, and all the other navigation links fade out except the link you’re hovering over? Well, you’ll learn how to create this effect with a few lines of JavaScript. The HTML...... читать далее

webdev javascript beginners tutorial

Разработка dev.to 19 мая 2024 г. 17:15

Event-driven wallet system all piggybacked on top MongoDB atlas service trigger support. You will learn how triggers in MongoDB work, transaction handling in MongoDB and little bit of JS PS - the title was not easy to choose since it manages wallets...... читать далее

javascript node systemdesign startup

Разработка dev.to 19 мая 2024 г. 16:04

Hi folks, I'm a fan of Shadcn UI library for its neat and clean components. Recently, I'm playing with Phoenix Liveview components, and I though why don't I port Shadcn UI to Phoenix Liveview. My goal is keeping the tags as much similar to original...... читать далее

elixir phoenix liveview

Разработка dev.to 19 мая 2024 г. 16:00

In this series I'll share my progress with my self-imposed programming challenge: build a Battlesnake in as many different programming languages as possible. Check the first post for a short intro to this series. You can also follow my progress on...... читать далее

programming challenge javascript

Разработка dev.to 19 мая 2024 г. 15:26

Creating an API with Node.js and Express.js is a powerful way to handle HTTP requests and responses, enabling you to build robust back-end services. Axios, on the other hand, is a promise-based HTTP client for the browser and Node.js that makes it ea...... читать далее

javascript express api webdev

Разработка dev.to 19 мая 2024 г. 13:04

Hi everyone, Hudy here! Today, I'm excited to share my open-source project manager with you all. I built this from the ground up with the goal of keeping operational costs under $15 per month. Before I deciding to build it, I tried Trello, Jira an...... читать далее

nextjs javascript node

Разработка dev.to 19 мая 2024 г. 12:59

Introduction: ​ As a full-stack developer, understanding cloud architecture is crucial in today’s digital age, where cloud computing serves as the backbone of the tech industry. This technology supports everything from small startups to global ente...... читать далее

microservices serverless architecture cloud

Разработка dev.to 19 мая 2024 г. 11:41

What is Bun? Bun is a new JavaScript runtime and package manager that focuses on speed and efficiency. It leverages the JavaScriptCore engine (the same engine used by Safari) to deliver high performance. Here are some standout features of Bun: Pe...... читать далее

bunjs webdev javascript typescript

Разработка dev.to 19 мая 2024 г. 10:31

Story I was recently trying to make a fan club nft for a web3 community. The project required that only members could mint a limited NFT collection, so I needed to implement a whitelist for the minting function. Here are some solutions I found onl...... читать далее

web3 nft ethereum blockchain

Разработка dev.to 19 мая 2024 г. 10:25

How to debug a Remix V2 (With Vite) application with Vite. Go to the left panel and click the bug icon. Click Run and Debug. Select Node.js (Alternatively create a file called launch.json in <project-root>/.vscode (If the .vscode folder...... читать далее

javascript vscode debug remix

Разработка dev.to 19 мая 2024 г. 7:52

Storing images have always been a trivial and omnipresent task while building out any application. What if i tell you there is a way you can store images without any storage services like AWS, Cloudinary or anything else like firebase buckets. Get b...... читать далее

node macos windows development

Разработка dev.to 19 мая 2024 г. 7:19

Recently, I have been doing chaos (fault) tests on the robustness of some self-built database driver/client base libraries to verify and understand the fault handling mechanism and recovery time of the business. It mainly involves the two basic comp...... читать далее

etcd mongodb chaostesting faulttesting

Разработка dev.to 19 мая 2024 г. 6:16

React is a popular JavaScript library for building user interfaces, particularly single-page applications where you need a fast, interactive experience. Developed by Facebook, React is used by companies like Netflix, Airbnb, and Instagram. In this gu...... читать далее

Разработка dev.to 19 мая 2024 г. 5:01

En este artículo, explicaremos qué es un Monorepo, por qué es beneficioso utilizarlo en ciertos tipos de proyectos y cómo podemos construir uno utilizando pnpm ¿Qué es un monorepo? Un monorepo, como su nombre indica, es un repositorio úni...... читать далее

typescript pnpm monorepo webdev

Разработка dev.to 19 мая 2024 г. 4:15

Back in the day, computer games were different. Not only have graphics and mechanics evolved since, but there's also one characteristic that doesn't seem very common in games today: nearly all of them had cheat codes. Cheat codes were sequences of k...... читать далее

java kotlin hacking debugger

Разработка dev.to 18 мая 2024 г. 22:40

Introduction In today's fast-paced development environment, having a CI/CD pipeline set up to automatically run tests, check project builds, and manage deployments can save significant time and enhance scalability. It has become a necessity for any...... читать далее

devops kubernetes githubactions cicd