You Don’t Know JS Yet: My Weekly Journey Through JavaScript Mastery

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

SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control
Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.
surveyjs.io
featured
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
  1. proposals

    Tracking ECMAScript Proposals

    Today, JavaScript is maintained by organizations like TC39 and ECMA, who meet every other month to decide and vote on new features and review the development of current ones. TC39 proposals go through a rigorous 5-stage process (Stage 0 through 4), with members from companies like Mozilla, Apple, Google, and Samsung shaping the language’s future.

  2. SurveyJS

    SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control. Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.

    SurveyJS logo
  3. webpack

    A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

    The JS code gets transpiled by tools like Babel, then bundled (often by Webpack) into a single or few files (like bundle.js). This optimizes the website to load faster, as the browser can fetch everything from one file instead of multiple.

  4. You-Dont-Know-JS

    A book series (2 published editions) on the JS language.

    [PS: There were many other things on topics like WebAssembly etc, that I have not covered here you can find the full chapter in YDKJSY GitHub repository]

  5. babel-sublime

    Syntax definitions for ES6 JavaScript with React JSX extensions.

    For new and incompatible syntax, the solution is transpiling—converting newer JS syntax to older syntax that can run on older engines. The most popular transpiler? Babel. This process ensures modern JS code can still reach a wide audience, even on legacy systems.

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

  • JavaScript Book recommendations?

    3 projects | /r/Frontend | 11 Dec 2021
  • JSDA - is very simple

    3 projects | dev.to | 11 Dec 2025
  • Refactoring 036 - Replace String Concatenations with Text Blocks

    1 project | dev.to | 18 Nov 2025
  • Search on steroids: Using regex in VS Code

    1 project | dev.to | 11 Nov 2025
  • stripIndents utility in Chef codebase.

    2 projects | dev.to | 5 Nov 2025

Did you know that JavaScript is
the 4th most popular programming language
based on number of references?