TypeScript Webpack

Open-source TypeScript projects categorized as Webpack

Top 23 TypeScript Webpack Projects

  • storybook

    Storybook is a frontend workshop for building UI components and pages in isolation. Made for UI development, testing, and documentation.

    Project mention: Storybook 7.6 is out! | /r/reactjs | 2023-12-01

    [Storybook 7.6](https://github.com/storybookjs/storybook/releases) is here with increased performance and much more! 🔥 Improved SWC support 🧪 New test utilities and fast build mode 🔼 NextJS SWC + avif support & fixes 🤡 SvelteKit page and navigation mocking ⚛️ React-docgen upgrade 🎨 Controls a11y, background theming, and viewports 🩺 CLI: The doctor is in! 🚫 Addons: Remove React as a peer dependency 🪦 Storyshots and Vue2 deprecated

  • ngx-admin

    Customizable admin dashboard template based on Angular 10+

    Project mention: Is there any github repo or something for medium or advanced level project in Angular that I can run in my local and learn something from that ?? | /r/Angular2 | 2023-09-06

    I learned a lot from the ngx-admin template but if you want a real world project PeerTube's Web app written in Angular you can check it out here

  • Appwrite

    Appwrite - The open-source backend cloud platform. Add Auth, Databases, Functions, and Storage to your product and build any application at any scale while using your preferred coding languages and tools.

  • electron-react-boilerplate

    A Foundation for Scalable Cross-Platform Apps

    Project mention: M0B205 for Alienware AW3423DW available for download from Dell, thought you couldn't upgrade the firmware on this one yourself? | /r/ultrawidemasterrace | 2023-12-05

    If I had to guess I'd say roughly 110 of those are since the installer relies on Electron React Boilerplate... That's what we get for using web technologies for desktop apps (despite the fact they do not need to be cross-platform nor accessible)

  • svgr

    Transform SVGs into React components 🦁

    Project mention: Nx + NextJS + Docker - The Nx way: Creating the NextJS application | dev.to | 2023-06-27

    //@ts-check // eslint-disable-next-line @typescript-eslint/no-var-requires const { composePlugins, withNx } = require('@nx/next'); /** * @type {import('@nx/next/plugins/with-nx').WithNxOptions} **/ const nextConfig = { nx: { // Set this to true if you would like to use SVGR // See: https://github.com/gregberge/svgr svgr: false, }, }; const plugins = [ // Add more Next.js plugins to this list if needed. withNx, ]; module.exports = composePlugins(...plugins)(nextConfig);

  • tamagui

    Cross platform React style library and UI kit made faster with an optimizing compiler.

    Project mention: Tamagui – UI kit that unify React Native and Web | news.ycombinator.com | 2023-11-24
  • nebular

    :boom: Customizable Angular UI Library based on Eva Design System :new_moon_with_face::sparkles:Dark Mode

    Project mention: What are your favorite component libraries for angular beside angular material ? | /r/Angular2 | 2023-02-14

    https://akveo.github.io/nebular/ I find this lib more visually appealing than angular material.

  • forge

    :electron: A complete tool for building and publishing Electron applications

    Project mention: [Windows] Try Electron 2 | dev.to | 2022-12-17

    Unable to load preload script #2931 - electron/forge - GitHub

  • InfluxDB

    Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.

  • angular-electron

    Ultra-fast bootstrapping with Angular and Electron :speedboat:

  • vue-loader

    📦 Webpack loader for Vue.js components

    Project mention: Currently switching from React to Vue | /r/vuejs | 2023-01-25

    doesn't have the problematic leak behavior.

  • after.js

    Next.js-like framework for server-rendered React apps built with React Router

    Project mention: Server-Side Rendering (SSR) in React | dev.to | 2023-11-18

    Documentation

  • modern.js

    Modern.js is a web engineering system, including a web framework and a npm package solution.

    Project mention: Why you should migrate to Rspack from webpack | dev.to | 2023-10-31

    Modern.js framework

  • esbuild-loader

    Webpack loader for esbuild: Speed up your build ⚡️

  • ts-loader

    TypeScript loader for webpack

    Project mention: The Complete Guide for Setting Up React App from Scratch (feat. TypeScript) | dev.to | 2022-12-14

    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

  • unplugin-vue-components

    📲 On-demand components auto importing for Vue

    Project mention: Vue 3 vs Vue 2 so far? What's your opinion? Things I didn't like about Vue 3 compared to Vue 2 | /r/vuejs | 2023-06-02
  • unplugin-icons

    🤹 Access thousands of icons as components on-demand universally.

    Project mention: To learn svelte, I clone Github's issues page including useful features that you might consider reusing. | /r/sveltejs | 2023-12-05

    🤹 Unplugin Icons

  • webpack-merge

    Merge designed for webpack

  • unplugin

    Unified plugin system for Vite, Rollup, Webpack, esbuild, and more

    Project mention: Building universal JS/TS plugins with unplugin | dev.to | 2022-12-12

    Make sure to check it out here

  • expo-cli

    Tools for creating, running, and deploying universal Expo and React Native apps

    Project mention: Expo app completely unresponsive when using Expo Camera and navigating away while recording | /r/reactnative | 2023-01-19
  • webpackbar

    Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5

  • clean-webpack-plugin

    A webpack plugin to remove your build folder(s) before building

  • compiled

    A familiar and performant compile time CSS-in-JS library for React.

    Project mention: Why is tailwind so hyped? | /r/webdev | 2023-01-13

    tags inside SFCs are typically injected as native tags during development to support hot updates. For production they can be extracted and merged into a single CSS file.

    There are also 3rd party CSS libs that do the same thing such as linaria, vanilla-extract, and compiled CSS. Which can be used in the event you're stuck with something that doesn't have baked in support via SFC formats (looking at you React).

    These are my preferred ways of handing it.

    1. Tailwind

    Option 2 is tailwind, which works backwards.

    That is, instead of the above with extraction where you write the styles, and the framework or libs extract them and replace them with class names, it's the other way around.

    You're writing class names first (which are essentially aggregated CSS property-values) which then generate and/or reference styles.

    It has the advantage of being easy to write (assuming you've got editor LSP, linting, etc), but as you've discovered, it's difficult to read / can get really messy really fast.

    As far as all the other claims on the Tailwind site, it's all marketing, at least 80% bullshit.

  • fork-ts-checker-webpack-plugin

    Webpack plugin that runs typescript type checker on a separate process.

  • braid-design-system

    Themeable design system for the SEEK Group

    Project mention: Feeling lost on grokking large libraries | /r/node | 2023-06-13

    I'm not trying to call a particular org or library out, because I think the ones I've been digging through (and prompted me to write this) are very high quality. It's vanilla-extract (a build-time CSS-in-JS library) and Braid Design System (built on vanilla-extract).

  • Onboard AI

    Learn any GitHub repo in 59 seconds. Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2023-12-05.

TypeScript Webpack related posts

Index

What are some of the best open-source Webpack projects in TypeScript? This list will help you:

Project Stars
1 storybook 81,172
2 ngx-admin 24,820
3 electron-react-boilerplate 22,141
4 svgr 10,089
5 tamagui 8,547
6 nebular 7,908
7 forge 5,941
8 angular-electron 5,498
9 vue-loader 4,956
10 after.js 4,126
11 modern.js 3,957
12 esbuild-loader 3,463
13 ts-loader 3,404
14 unplugin-vue-components 3,294
15 unplugin-icons 3,166
16 webpack-merge 2,659
17 unplugin 2,578
18 expo-cli 2,572
19 webpackbar 2,036
20 clean-webpack-plugin 1,956
21 compiled 1,915
22 fork-ts-checker-webpack-plugin 1,877
23 braid-design-system 1,445
Learn any GitHub repo in 59 seconds
Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
getonboard.dev