Best of Node.jsFebruary 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Creating a resume builder with React, NodeJS and AI 🚀

    Learn how to create a resume builder using React, Node.js, and the OpenAI API. Set up the server and React application, upload images, communicate with the OpenAI API, display the response, and print React pages.

  2. 2
    Article
    Avatar of builderiobuilder.io·3y

    Debugging Node.js, The Right Way

    Learn how to debug Node.js code using browser devtools, the difference between --inspect and --inspect-brk, debugging node scripts launched with other commands, and debugging directly in your IDE or in VS Code for client-side code.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    JavaScript CRUD Rest API using Nodejs, Express, Sequelize, Postgres, Docker and Docker Compose

    Learn how to create a CRUD rest API using Node.js, Express, Sequelize, Postgres, Docker, and Docker Compose. Dockerize the Node.js application and test the APIs with Postman.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    Building a forum with React, NodeJS

    Learn how to build a forum system with React and NodeJS. Set up the project environment, create the Node.js server, design the user interface, authenticate users, create and retrieve post threads, and send notifications using Novu Topic API.

  5. 5
    Article
    Avatar of communityCommunity Picks·3y

    Building a real-time commenting app with Socket.io and React

    Guide on building a real-time commenting app with Socket.io and React. Covers setting up the application, building the Node.js API server, creating comments in the server, creating the React app, styling the app, adding Socket.io for real-time communication, and using Knock for cross-channel notifications.

  6. 6
    Article
    Avatar of communityCommunity Picks·3y

    Building the largest Notifications Library in the world using ChatGPT, React, and NodeJS 🤯

    Learn how to create a notification library using ChatGPT, React, and NodeJS. Register to ChatGPT, set up the project, and generate different categories, notification types, and notifications.

  7. 7
    Article
    Avatar of do_communityDigitalOcean Community·3y

    How To Scale Node.js Applications with Clustering

    This tutorial explains how to scale a Node.js application using the cluster module, which creates multiple copies of the same application on the same machine. It demonstrates how clustering can improve performance by distributing the load among processes and provides a comparison between a single-instance app and a clustered app.

  8. 8
    Article
    Avatar of communityCommunity Picks·3y

    whatsapp-web.js

    A WhatsApp client library for NodeJS that allows for programmatically controlling WhatsApp accounts, reducing ban risks and providing an easy-to-use interface.

  9. 9
    Article
    Avatar of builderiobuilder.io·3y

    Node.js module.exports vs. exports: The Right Choice

    Understanding the difference between module.exports and exports in Node.js and when to use each. Explaining how object references work in JavaScript.

  10. 10
    Article
    Avatar of communityCommunity Picks·3y

    Ryan Dahl, Node.js Creator, Wants to Rebuild How We Experience the Web

    Ryan Dahl, creator of Node.js, reflects on the evolution and shortcomings of Node.js. He introduces Deno as a more secure and elegant alternative. Dahl believes that edge computing is the future of web development.

  11. 11
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Build a CRUD Command Line Application With Node.js

    Learn how to build a CRUD command line application with Node.js. This tutorial covers the basics of Node.js, installation, setting up a project, installing dependencies, creating and checking files, querying and manipulating data in a database.

  12. 12
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Build Your Own E-Commerce Site with Medusa

    Learn how to build your own e-commerce site with Medusa, an open-source, composable commerce platform. Discover its flexible architecture, key features, and how to set up the server, admin dashboard, and storefront.

  13. 13
    Article
    Avatar of communityCommunity Picks·3y

    Build and Deploy NodeJS App On Kubernetes from Scratch

    The post discusses the importance of designing and scaling web applications, the use of containers, and how to build and deploy a NodeJS app on Kubernetes.