Home

Awesome

<p align='center'> <h1>Vitesse-H5</h1>

Mocking up mobile web app with <b>Vitesse-H5</b><sup><em>(speed)</em></sup>

</p> <br> <p align='center'> <a href="https://vitesse-h5.yunle.fun/">Live Demo</a> </p> <br> <p align='center'> <b>English</b> | <a href="./README.zh-CN.md">简体中文</a> <!-- Contributors: Thanks for getting interested, however we DON'T accept new transitions to the README, thanks. --> </p> <br>

Why Vitesse-H5?

Due to my work, I mainly write some mobile related applications. I also write some small tools in my spare time, such as air-conditioner, cook, your-university and so on. Most of their traffic comes from mobile, so mobile adaptation is essential.

There are also some more appropriate strategies and practices for mobile.

So I created this template to document what I think are the best practices for mobile web apps, inspired by vitesse.

Features

<br>

Pre-packed

UI Frameworks

Icons

Plugins

Coding Style

Dev tools

Try it now!

Vitesse requires Node >=14.18

GitHub Template

Create a repo from this template on GitHub.

Clone to local

If you prefer to do it manually with the cleaner git history

npx degit YunLeFun/vitesse-h5 my-vitesse-h5
cd my-vitesse-h5
pnpm i # If you don't have pnpm installed, run: npm install -g pnpm

Checklist

When you use this template, try follow the checklist to update your info properly

And, enjoy :)

Usage

Development

Just run and visit http://localhost:3333

pnpm dev

Build

To build the App, run

pnpm build

And you will see the generated file in dist that ready to be served.

Deploy on Netlify

Go to Netlify and select your clone, OK along the way, and your App will be live in a minute.

Docker Production Build

First, build the vitesse-h5 image by opening the terminal in the project's root directory.

docker buildx build . -t vitesse-h5:latest

Run the image and specify port mapping with the -p flag.

docker run --rm -it -p 8080:80 vitesse-h5:latest