cookie

We use cookies to improve your browsing experience. By clicking «Accept all», you agree to the use of cookies.

avatar

Node JS

Подборки по Node js и все что с ним связано. По всем вопросам @evgenycarter

Show more
Advertising posts
1 850
Subscribers
-124 hours
-57 days
+1830 days

Data loading in progress...

Subscriber growth rate

Data loading in progress...

Photo unavailableShow in Telegram
В открытом курсе AvitoTech по JavaScript вышел третий урок. Те, кто прослушал первые два, уже могут написать простой скрипт. А в третьем уроке всё о данных в JavaScript, их организации и обработке: объявление переменных и инициализация, стек и куча, память, проблемные числа, области видимости. Подписывайтесь на канал, чтобы не пропустить новые выпуски.
Show all...
Photo unavailableShow in Telegram
Using Node.js's test runner Node.js has a flexible and robust built-in test runner. This guide will show you how to set up and use it. https://nodejs.org/en/learn/test-runner/using-test-runner ✍️ @nodejs_lib
Show all...
👍 1
Photo unavailableShow in Telegram
Node.js Test Runner: A Beginner's Guide Historically, Node.js lacked an integrated test runner, which forced developers to rely on third-party frameworks such as Jest or Mocha. This changed when James M. Snell proposed on GitHub that a test runner should be included within Node.js. The proposal developed over time and was eventually merged into the core of Node.js. As a result, Node version 18 or higher includes a built-in test runner, which removes the need for external testing dependencies. In this article, you will explore the features of the new test runner along with some examples. https://betterstack.com/community/guides/testing/nodejs-test-runner/ ✍️ @nodejs_lib
Show all...
👍 1
Photo unavailableShow in Telegram
Мучаетесь с разработкой на JavaScript и мечтаете о простоте и порядке в коде? Надоело изобретать велосипед и тратить время на рутинные операции? Представьте, что вы можете создавать сложные веб-приложения легко и непринужденно, используя мощь и элегантность Angular Framework. Dependency Injection больше не будет для вас тёмным лесом, а написание чистого, поддерживаемого кода станет приятной рутиной. Всё это станет реальностью на нашем открытом уроке «Angular Framework. Dependency Injection» 4 июля в 20:00 мск. После занятия вы сможете создавать приложение на Angular и разрабатывать простые компоненты с возможностью выделять бизнес-логику в специальные классы и сервисы. Забирайте свой билет в мир профессиональной фронтенд-разработки! Регистрируйтесь прямо сейчас, чтобы не пропустить бесплатный урок: https://vk.cc/cy6bzG Реклама. ООО «Отус онлайн-образование», ОГРН 1177746618576, www.otus.ru
Show all...
Photo unavailableShow in Telegram
How to handle multiple API requests in your NodeJS Application Unlike hackathons, when you’re building a NodeJS API that’s going to be used in the real world, you want to make sure that it’s capable of handling concurrency issues. Even though NodeJS is asynchronous by default, it has its limitations while handling multiple requests which require CPU-intensive tasks. By CPU intensive, I mean performing cryptographic operations, processing image/video/audio files, parsing large amounts of data such as XML/JSON/YAML, Mathematical Computations, Data Compressions, Machine Learning models, etc. https://medium.com/@abhinavcv007/how-to-handle-multiple-api-requests-in-your-nodejs-application-cfa298e11b28 ✍️ @nodejs_lib
Show all...
👍 2
Photo unavailableShow in Telegram
AvitoTech продолжает радовать крутым образовательным контентом. На этот раз инженеры подготовили открытый видеокурс по JavaScript. Два первых урока уже на канале — самое время присоединиться к обучению или, как минимум, добавить в закладки. На курсе рассмотрены и описаны простым и понятным языком ключевые аспекты JS: сам язык программирования, HTML и CSS. Из первого урока вы узнаете об устройстве современного веба, а из второго — про формирование языка JS. И даже сможете написать свой первый скрипт. Курс для слушателей любого уровня, но с базовыми знаниями в программировании будет попроще.
Show all...
👍 1😱 1
Hot Hook Hot Hook is a simple and lightweight library for adding hot module replacement in NodeJS with ESM. You know how in frameworks like React or VueJS, you edit a file and the page updates automatically without needing to refresh? Well, it's the same concept but for NodeJS. Take an Express server, for example. The most common development process involves watching the entire project with tools like nodemon and restarting the whole server whenever a file changes. With Hot Hook, you no longer need to restart the entire server; you can make it so only the changed module/file is reloaded. This provides a much faster DX and feedback loop. The library is designed to be very light and simple. It doesn't perform any dark magic, no AST parsing, no code transformation, no bundling. It just reloads the changed module. https://github.com/julien-R44/hot-hook ✍️ @nodejs_lib
Show all...
GitHub - Julien-R44/hot-hook: 🪝 Simple HMR for NodeJS + ESM

🪝 Simple HMR for NodeJS + ESM. Contribute to Julien-R44/hot-hook development by creating an account on GitHub.

👍 2
Photo unavailableShow in Telegram
Готовы освоить любимый язык опытных разработчиков и сделать свой стек непобедимым? Ждём вас на открытом практическом уроке «Знакомство с Clojure, идеология, синтаксис и основные особенности» от OTUS, где мы: - поговорим о том, что из себя представляет язык Clojure; - обсудим предысторию его появления и основную идеологию; - продемонстрируем выполнение кода в REPL и взаимодействие с ним из IDE; - ответим на все возникающие вопросы. 🔔Встречаемся 25 июня в 19:00 мск в рамках курса «Clojure Developer». Все участники вебинара получат специальную цену на обучение! ➡ Регистрируйтесь прямо сейчас, чтобы не пропустить бесплатный урок.
Show all...
Photo unavailableShow in Telegram
Understanding Offset and Cursor-Based Pagination in Node.js Pagination means dividing a big chunk of data into smaller pages. It unlocks performance benefits for the backend, while also improving UX by sending manageable pieces of data to a client. In this article, we'll explore offset-based and cursor-based server-side pagination approaches, compare them, and implement cursor-based pagination in Node.js. https://blog.appsignal.com/2024/05/15/understanding-offset-and-cursor-based-pagination-in-nodejs.html ✍️ @nodejs_lib
Show all...
👍 2
Создание ленты активности GitHub с помощью Node.js и Socket.io В этой статье мы расскажем о том, как создать ленту активности непосредственно в вашем продукте с помощью Node.js и Socket.io. Допустим, мы создаем B2B SaaS-приложение для разработчиков, и оно должно показывать ленту активности, происходящую в GitHub-репозитории их организации. Любые коммиты, добавленные в репозиторий, должны отображаться в приложении в режиме реального времени. Именно это мы и создадим в этом посте. Готовый проект можно найти на GitHub. https://knock.app/blog/building-a-github-activity-feed-with-nodejs-and-socket-io ✍️ @nodejs_lib
Show all...
Building a GitHub activity feed with Node.js and Socket.io | Knock

An in-depth guide that covers building a real-time activity feed using Node.js, Socket.io and GitHub webhooks.

👍 1
Choose a Different Plan

Your current plan allows analytics for only 5 channels. To get more, please choose a different plan.