Best of Webpack2022

  1. 1
    Article
    Avatar of nextNext.js·4y

    Blog - Next.js 13

    Next.js 13 includes Turbopack, the new Rust-based successor to Webpack. New next/image(stable): Faster with native browser lazy loading. New @next/font(beta): Automatic self-hosted fonts with zero layout shift.

  2. 2
    Article
    Avatar of logrocketLogRocket·4y

    Micro-frontend with React and Next.js

    The bottom line is that you should split your project up so that the user experience won't be disturbed. It should look like this: We have to expose our component to make it globally available for another micro-frontend. We will use the exported component of fe1 and the function of fe2. Let’s treat fe3 as a consumer. Let's treat fe2 as a customer. Let�’S treat fe1 as a consumers.

  3. 3
    Article
    Avatar of vercelVercel·4y

    Introducing Turbopack: Rust-based successor to Webpack – Vercel

    Turbopack: Rust-based successor to Webpack Vercel's mission is to provide the speed and reliability innovators need to create at the moment of inspiration. It's built on a new incremental architecture for the fastest possible development experience.

  4. 4
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·4y

    Time to Say Goodbye to Webpack?

    Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects. Vite is opinionated and comes with sensible defaults out of the box, but is also highly extensible via its plugin API and JavaScript API with full typing support.

  5. 5
    Article
    Avatar of communityCommunity Picks·4y

    Make your React apps fast again

    Profiler can help you improve performance of a React application. We will go over ways to improve the performance of an app, including some pre-optimization techniques. We can use the Profiler in the React DevTools to measure performance of our apps. To use the profiler, you must Some are asynchronous, such as background HTTP calls, while others occur by user or You.

  6. 6
    Article
    Avatar of pointerPointer·4y

    The State of Frontend in 2022

    The State of Frontend in 2022 analysis of 3,700 respondents from 125 countries. The 5 countries with the most responses were the US, Poland, UK, Germany and India. Only 18% of people filling out the survey said they work at non-tech-first companies.

  7. 7
    Article
    Avatar of logrocketLogRocket·4y

    Vite 3.0 vs. Create React App

    Vite is built on top of esbuild, a JavaScript bundler written in Go, which bundles dependencies 10-100 times faster than JavaScript-based bundlers. Vite leverages the browser’s native ESM to parse and compile your code as the browser requests it. The browser only needs to pre-bundle your dependencies.

  8. 8
    Article
    Avatar of hashnodeHashnode·4y

    Introduction to Vite: The Next Generation Frontend Tooling

    Vite is the next generation frontend tooling. It is a solution to slow server starts because it uses native ESM to serve code. Most tools like webpack, Parcel and Rollup are bundle-based. This means the code has to be completely bundled before it can be served. Vite only needs to transform and serve source code on demand.

  9. 9
    Article
    Avatar of medium_jsMedium·3y

    How Webpack works?

    Webpack is a commonly used library among modern frontend-based applications. It is a decade-old and battle-tested library. Many of the full-fledged frontend frameworks like NextJS, and Gatsby use webpack for bundling and compilation purposes by default.

  10. 10
    Article
    Avatar of asayerasayer·3y

    Top alternatives to Create-React-App

    The React team’s official launch script, Create-React-App (CRA) is the best choice for launching your React applications. There are some difficulties that developers run into while starting their project with the CRA.

  11. 11
    Article
    Avatar of asayerasayer·3y

    Getting started with Vite

    Vite serves your code via native ES module imports during development and bundles it with Rollup for production. Vite is a lightning-fast cold server start and offers instant hot module replacement and true on-demand compilation. It is also highly extensible via its plugin API and JavaScript API with full typing support.

  12. 12
    Article
    Avatar of phProduct Hunt·4y

    Next.js 13 - Build powerful & dynamic web applications – without limits

    Next.js 13 includes nested layouts, server-side streaming, component-based data-fetching, and Turbopack – the Rust-based

  13. 13
    Article
    Avatar of asayerasayer·3y

    Top 5 alternatives to Webpack

    Webpack is a free and open-source module bundler for JavaScript applications. It is used to bundle JS files for usage in a web browser, and it can transform front-end assets such as HTML, CSS, and images if corresponding loaders are included. Webpack works by processing your application and internally building a dependency graph.

  14. 14
    Article
    Avatar of towardsdevTowards Dev·4y

    Let’s understand WEBPACK !!!

    The Webpack is Build and Managing Tool that manages your Javascript code and Styles. Let’s take a small HTML application with 3 files such as - index.html — A basic page with the text Wepack - Build Toolin it and 2 files linked.

  15. 15
    Article
    Avatar of auth0Auth0·4y

    Testing React Applications with Jest

    MockingJest allows you to mock objects in your test files. You can turn on automatic mocking with automock which will mock every component/object that the component is part of your project. For the first test, we'll write a simple test that ensures that Jest was set up correctly and that it can run a test successfully.

  16. 16
    Article
    Avatar of logrocketLogRocket·4y

    Modern, faster alternatives to ESLint

    In this article, we will look at specific open source libraries that either serve as alternatives to ESLint or can be integrated with ESLint. Some of these libraries are built to outright replace ESLint and improve on aspects such as performance or developer experience. We’ll focus on libraries that work well within the JavaScript ecosystem.

  17. 17
    Article
    Avatar of bitBits and Pieces·4y

    Create React App without Create React App

    This article talks about the process of creating react app without using any libraries or frameworks such as “create-react-app” , “NextJS” etc. This article will help us to understand how webpack and babel work in a more practical sense.