10 JavaScript and NodeJS Tips that Will Knock Away Multiple Concepts

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • lodash

    A modern JavaScript utility library delivering modularity, performance, & extras.

    The benefits that currying provides is what makes libraries like lodash so powerful. You can create a function that has some behavior predefined, then reuse it as a transformation for upcoming values (hint: even functions are treated as values in JavaScript). lodash-fp makes use of this pattern throughout all of their code and helps you work with a whole new programming paradigm.

  • redux

    A JS library for predictable global state management

    A good example that makes great use of this technique is the createStore function from the redux library. (Hint: There are comments in that snippet that describe some neat behavior as the function is curried)

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

  • Ink

    🌈 React for interactive command-line apps

    Awhile back I was also planning to learn how the native child_process module in NodeJS works, but I kept pushing it aside. When I finally decided to get my hands dirty with it, I realized that stdout already knocked away the mysterious I had with the module. Then it was easy for me to get into tools like Ink.

  • redux-persist

    persist and rehydrate a redux store

    When you start understanding the benefits and how working with virtual data structures is preferred over working directly with the DOM, you are already half way into understanding the modern techniques that power many of todays web applications. Some examples of such techniques are rehydration and server components.

  • React

    The library for web and native user interfaces.

    There's no doubt about it: thinking in virtual data structures is the way to go for modern application development. This is a concept popularized in React that inspired libraries like virtual-dom to provide more ways to write performant code for web apps.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts