TypeScript Vite

Open-source TypeScript projects categorized as Vite

Top 23 TypeScript Vite Projects

  • vite

    Next generation frontend tooling. It's fast!

    Project mention: How to build and publish React TypeScript NPM packages with Vite | dev.to | 2023-06-04

    What is Vite? Most of you're probably familiar with what Vite is, but why not start with a quick introduction to get the flow going.

  • slidev

    Presentation Slides for Developers

    Project mention: Marp: Markdown Presentation Ecosystem | news.ycombinator.com | 2023-01-24

    use https://github.com/slidevjs/slidev instead, its much better

  • Appwrite

    Appwrite - The Open Source Firebase alternative introduces iOS support . Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!

  • react-starter-kit

    The web's most popular Jamstack front-end template (boilerplate) for building web applications with React

    Project mention: Building a SPA CRM application - Vite or Next.js? | /r/reactjs | 2023-04-28

    I don't have much experience with Next.js. But since most of my projects are CRM-like applications, I find Vite works really great for that type of apps. I'm bootstrapping new projects with the React Starter Kit template (pre-configured with React, Material UI, Vite, Google Cloud Identity, and Cloudflare Workers).

  • vitest

    A Vite-native test framework. It's fast!

    Project mention: Cannot figure out how to mock ES6 modules for a Node AWS Lambda | /r/node | 2023-06-04

    If it's not a huge codebase then I'd go for https://vitest.dev/, which is a modern take on testing frameworks.

  • vitepress

    Vite & Vue powered static site generator.

    Project mention: How Do You Build SaaS Landing Pages? | /r/vuejs | 2023-05-21
  • vitesse

    🏕 Opinionated Vite + Vue Starter Template

    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

    The docs help but also look at vitesse template - that helped me a lot to figure out usage and the author of the template is one of the contributors of unplugin.

  • tamagui

    a better universal ui system

    Project mention: Should I use tamagui? | /r/reactnative | 2023-06-06
  • Klotho

    AWS Cloud-aware infrastructure-from-code toolbox [NEW]. Build cloud backends with Infrastructure-from-Code (IfC), a revolutionary technique for generating and updating cloud infrastructure. Try IfC with AWS and Klotho now (Now open-source)

  • massCode

    A free and open source code snippets manager for developers

    Project mention: massCode v3 - An open source snippets manager is out 🚀 | dev.to | 2022-09-05

    Latest Release | Documentation | Change Log

  • soybean-admin

    A fresh and elegant admin template, based on Vue3,Vite3,TypeScript,NaiveUI and UnoCSS [一个基于Vue3、Vite3、TypeScript、NaiveUI 和 UnoCSS的清新优雅的中后台模版]

    Project mention: Is there any Professional grade template for free. | /r/vuejs | 2022-12-10
  • 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
  • playground-macos

    My portfolio website simulating macOS's GUI, developed with React and UnoCSS.

  • electron-vite-vue

    🥳 Really simple Electron + Vite + Vue boilerplate.

  • unplugin-icons

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

    Project mention: How do I use SVG icons in React? | /r/Frontend | 2023-04-08

    unplugin-icons will be the easiest and most robust option if you are using a bundler

  • 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

  • vite-plugin-ssr

    Like Next.js / Nuxt but as do-one-thing-do-it-well Vite plugin.

    Project mention: NextJS app router is complete failure, what alternatives do you recommend for react SSR and ISR? | /r/reactjs | 2023-05-30

    vite-plugin-ssr

  • vitesse-webext

    ⚡️ WebExtension Vite Starter Template

    Project mention: Browser extension Framework or Scaffold with vue3 | /r/vuejs | 2023-03-06

    This should be the best one: https://github.com/antfu/vitesse-webext

  • tailwind-landing-page-template

    Simple Light is a free landing page template built on top of TailwindCSS and fully coded in React / Next.js. Made by

  • vite-plugin-pwa

    Zero-config PWA for Vite

    Project mention: How to send Push Notifications to a Nuxt 3 PWA? | /r/Nuxt | 2023-05-06

    I am trying to glue together a Nuxt 3 PWA with vite-plugin-pwa, more specifically @vite-pwa/nuxt. I installed the module and set up basic configuration (I basically followed this video)

  • vue-flow

    A highly customizable Flowchart component for Vue 3. Features seamless zoom & pan 🔎, additional components like a Minimap 🗺 and utilities to interact with state and graph.

    Project mention: Interactive Nodes-and-edges graph in Vue | /r/vuejs | 2023-03-21

    For some use cases, I think vue-flow would count as a graph library. In your case, this is probably a good library to use.

  • vite-plugin-federation

    Module Federation for vite & rollup

    Project mention: Module Federation for distributed front ends — the best of both worlds? | /r/reactjs | 2022-12-02
  • ts-monorepo

    Template for setting up a TypeScript monorepo

    Project mention: [AskJS] Is there a silver bullet for consuming Typescript libraries in a Monorepo? | /r/javascript | 2023-05-09

    1. Linking libs with tsconfig paths. This approach involves setting a tsconfig.json paths object which maps the package name, to the local filesystem location. Eg. "paths": {"@org/lib":"../libs/lib"} - Nx uses this approach for their Integrated Monorepo configuration https://nx.dev/tutorials/integrated-repo-tutorial https://github.com/NiGhTTraX/ts-monorepo.

  • analog

    The fullstack Angular meta-framework

    Project mention: SPARTAN. Type-safe Angular full-stack development powered by Analog. | dev.to | 2023-04-25

    Feature: Use NestJS integration as SSR/http server #317

  • nextjs-monorepo-example

    Collection of monorepo tips & tricks

    Project mention: How do you keep FE dependencies up to date? | /r/typescript | 2023-03-01

    It's pretty easy to setup renovate, the "update dependency XXX PR" comes with the upstream changelogs from which you can have an idea of the work to do if needed. Compared to some other similar tools: monorepo support (ie: workspace:"") + possibility to dedupe your lock file + an easy way to regroug packages (ie: "@vitest/ui" and "vitest" together). An example: https://github.com/belgattitude/nextjs-monorepo-example/blob/main/renovate.json5.

  • Sonar

    Write Clean JavaScript Code. Always.. Sonar helps you commit clean code every time. With over 300 unique rules to find JavaScript bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.

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-06-06.

TypeScript Vite related posts

Index

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

Project Stars
1 vite 56,705
2 slidev 26,796
3 react-starter-kit 21,926
4 vitest 9,110
5 vitepress 7,798
6 vitesse 7,510
7 tamagui 6,451
8 massCode 4,739
9 soybean-admin 4,190
10 unplugin-vue-components 2,892
11 playground-macos 2,885
12 electron-vite-vue 2,659
13 unplugin-icons 2,615
14 unplugin 2,223
15 vite-plugin-ssr 2,187
16 vitesse-webext 2,072
17 tailwind-landing-page-template 2,059
18 vite-plugin-pwa 2,035
19 vue-flow 1,607
20 vite-plugin-federation 1,287
21 ts-monorepo 1,237
22 analog 1,233
23 nextjs-monorepo-example 1,114
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
www.influxdata.com