The Complete Guide for Setting Up React App from Scratch (feat. TypeScript)

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

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. 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.

    babel-loader(v9.1.0): allows transpiling JavaScript files using Babel and webpack.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. custom-react-setup

    A complete guide for setting up a React app with webpack, Babel, and TypeScript

    🙏 Please visit my GitHub repository for more settings and codes.

  4. ts-loader

    TypeScript loader for webpack

    why I use @babel/preset-typescript over ts-loader and awesome-typescript-loader to complie TypeScript? it's blazingly faster than the others and has more perks(read #4) ts-loader doesn't natively support HMR(Hot Module Replacement) awesome-typescript-loader's latest release is on Jun 22, 2018 TypeScript With Babel: A Beautiful Marriage - Matt Turnbull's Post

  5. awesome-typescript-loader

    Discontinued Awesome TypeScript loader for webpack

    why I use @babel/preset-typescript over ts-loader and awesome-typescript-loader to complie TypeScript? it's blazingly faster than the others and has more perks(read #4) ts-loader doesn't natively support HMR(Hot Module Replacement) awesome-typescript-loader's latest release is on Jun 22, 2018 TypeScript With Babel: A Beautiful Marriage - Matt Turnbull's Post

  6. react-refresh-webpack-plugin

    A Webpack plugin to enable "Fast Refresh" (also previously known as Hot Reloading) for React components.

    as mentioned above, we're using the webpack; therefore, we're going to use @pmmmwh/react-refresh-webpack-plugin to apply the Fast Refresh feature to our app. I mean, it's for development, so what's the harm of trying it right?

  7. webpack-cli

    Webpack's Command Line Interface

    webpack-cli(v5.0.1): enables you to use the command-line interface of the Webpack

  8. React

    The library for web and native user interfaces.

    react(v18.2.0) : The react package contains only the functionality necessary to define React components. It is typically used together with a React renderer like react-dom for the web, or react-native for the native environments.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. react-router

    Declarative routing for React

    react-router-dom(v6.4.4): contains bindings for using React Router in web applications.

  11. Babel (Formerly 6to5)

    🐠 Babel is a compiler for writing next generation JavaScript.

    babel-loader(v9.1.0): allows transpiling JavaScript files using Babel and webpack.

  12. postcss-plugins

    PostCSS Tools and Plugins

    w/ postcss-preset-env(v7.8.3): convert modern CSS into something most browsers can understand, determining the polyfills you need based on your targeted browsers or runtime environments. It takes the support data that comes from MDN and Can I Use and determine from a browserlist whether those transformations are needed. It also packs Autoprefixer within and shares the list with it, so prefixes are only applied when you're going to need them given your browser support list.

  13. browserslist

    🦔 Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-preset-env

    w/ postcss-preset-env(v7.8.3): convert modern CSS into something most browsers can understand, determining the polyfills you need based on your targeted browsers or runtime environments. It takes the support data that comes from MDN and Can I Use and determine from a browserlist whether those transformations are needed. It also packs Autoprefixer within and shares the list with it, so prefixes are only applied when you're going to need them given your browser support list.

  14. autoprefixer

    Parse CSS and add vendor prefixes to rules by Can I Use

    w/ postcss-preset-env(v7.8.3): convert modern CSS into something most browsers can understand, determining the polyfills you need based on your targeted browsers or runtime environments. It takes the support data that comes from MDN and Can I Use and determine from a browserlist whether those transformations are needed. It also packs Autoprefixer within and shares the list with it, so prefixes are only applied when you're going to need them given your browser support list.

  15. typescript-plugin-css-modules

    A TypeScript language service plugin providing support for CSS Modules.

  16. TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  17. css-modules

    Documentation about css-modules

  18. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
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

  • Reactjs in Drupal with WebPack

    2 projects | dev.to | 23 Sep 2022
  • Level Up Your Skills with Athena Crisis: An Open-Source Game Dev Playground

    1 project | dev.to | 7 Jun 2025
  • The Modern 2025 Web Components Tech Stack

    4 projects | dev.to | 3 Mar 2025
  • 30 Best Free Tools for Frontend Developers in 2025

    15 projects | dev.to | 1 Mar 2025
  • Rust Is Eating JavaScript

    3 projects | news.ycombinator.com | 16 Feb 2025

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?