Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teocci/vite-dashboard
vite-dashboard is a basic webserver, build using Vite as build tooling.
https://github.com/teocci/vite-dashboard
nodejs template vitejs webapp
Last synced: about 2 months ago
JSON representation
vite-dashboard is a basic webserver, build using Vite as build tooling.
- Host: GitHub
- URL: https://github.com/teocci/vite-dashboard
- Owner: teocci
- Created: 2023-02-08T04:05:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-18T00:19:11.000Z (12 months ago)
- Last Synced: 2024-05-02T02:19:15.868Z (8 months ago)
- Topics: nodejs, template, vitejs, webapp
- Language: CSS
- Homepage: https://github.com/teocci/vite-dashboard
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## [vite-dashboard][2]
`vite-dashboard` is a basic webserver, build using [Vite][1] as build tooling.
## Disclaimer
> This tool is limited to security research only, and the user assumes all legal and related responsibilities arising from its use! The author assumes no legal responsibility!## install
```bash
cd vite-dashboardnpm install
npm run dev
```## config
Config the package json file
```json
{
"name": "vite-dashboard",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"vite": "^4.1.0"
}
}
```## Run
```bash
npm run devopen http://127.0.0.1:5174/
```[1]: https://github.com/vitejs/vite
[2]: https://pkg.go.dev/github.com/teocci/vite-dashboard
[3]: https://github.com/teocci/vite-dashboard/releases/tag/v1.0.0