vite-vue3-tailwind-starter

Vite, Vue3, Tailwind CSS (single-page app) (by web2033)

Vite-vue3-tailwind-starter Alternatives

Similar projects and alternatives to vite-vue3-tailwind-starter

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better vite-vue3-tailwind-starter alternative or higher similarity.

vite-vue3-tailwind-starter reviews and mentions

Posts with mentions or reviews of vite-vue3-tailwind-starter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-28.
  • Should i do a vue 3 project before jumping into nuxt?
    2 projects | /r/vuejs | 28 Apr 2022
  • Can anyone suggest some good VueJS boilerplates?
    7 projects | /r/vuejs | 22 Mar 2022
    I started with this one https://github.com/web2033/vite-vue3-tailwind-starter and modified it to suit my own needs. Replaced Tailwind with Windi (faster, fewer dependencies).
  • How to build a CLI using NodeJS 💻
    10 projects | dev.to | 4 Jan 2022
    #! /usr/bin/env node const inquirer = require('inquirer'); const shell = require('shelljs'); const path = process.cwd(); const { questions, questionsTs } = require('./utils/questions.js'); inquirer.prompt(questions).then((answers) => { if (answers.framework === 'React') { inquirer.prompt(questionsTs).then((answersTs) => { if (answersTs.typescript === 'Yes') { shell.exec(`mkdir ${answers.projectName}`); shell.exec( `git clone https://github.com/GKaszewski/react-tailwind-typescript-template ${answers.projectName}` ); shell.cd(`${path}/${answers.projectName}`); shell.exec(`npm i`); console.log( '👨‍💻 Successfully installed all the required dependencies\nHappy hacking 🚀' ); } else { shell.exec(`mkdir ${answers.projectName}`); shell.exec( `git clone https://github.com/YashKumarVerma/react-tailwind-template ${answers.projectName}` ); console.log('🛠️ Successfully build the required files'); shell.cd(`${path}/${answers.projectName}`); shell.exec(`npm i`); console.log( '👨‍💻 Successfully installed all the required dependencies\nHappy hacking 🚀' ); } }); } else if (answers.framework === 'NextJS') { inquirer.prompt(questionsTs).then((answersTs) => { if (answersTs.typescript === 'Yes') { shell.exec(`mkdir ${answers.projectName}`); shell.exec( `git clone https://github.com/avneesh0612/next-starter ${answers.projectName}` ); shell.cd(`${path}/${answers.projectName}`); shell.exec(`npm i`); console.log( '👨‍💻 Successfully installed all the required dependencies\nHappy hacking 🚀' ); } else { shell.exec(`mkdir ${answers.projectName}`); shell.exec( `git clone https://github.com/Neeraj1005/Nextjs-tailwind-template ${answers.projectName}` ); shell.cd(`${path}/${answers.projectName}`); shell.exec(`npm i`); console.log( '👨‍💻 Successfully installed all the required dependencies\nHappy hacking 🚀' ); } }); } else if (answers.framework === 'Svelte') { shell.exec(`mkdir ${answers.projectName}`); shell.exec( `git clone https://github.com/jhanca-vm/Svelte-Tailwind ${answers.projectName}` ); shell.cd(`${path}/${answers.projectName}`); shell.exec(`npm i`); console.log( '👨‍💻 Successfully installed all the required dependencies\nHappy hacking 🚀' ); } else { shell.exec(`mkdir ${answers.projectName}`); shell.exec( `git clone https://github.com/web2033/vite-vue3-tailwind-starter ${answers.projectName}` ); shell.cd(`${path}/${answers.projectName}`); shell.exec(`npm i`); console.log( '👨‍💻 Successfully installed all the required dependencies\nHappy hacking 🚀' ); } });
  • Tailwind CSS v3.0.0-alpha + Vue 3 + Vite (starter)
    2 projects | /r/vuejs | 4 Oct 2021
  • Try just-in-time compiler for Tailwind CSS with Vite/Vue3
    2 projects | /r/vuejs | 16 Mar 2021
  • Make a Single Page Application (SPA) with Vue.js and Sanity
    5 projects | dev.to | 9 Mar 2021
    This project was created using the Vue.js 3 and Tailwind CSS Starter kit, located here.
  • Vite 2.x + Vue 3.x + Tailwind 2.x (starter)
    3 projects | /r/vuejs | 5 Jan 2021
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 16 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →