No description
| client | ||
| server | ||
| .gitignore | ||
| deno.json | ||
| deno.lock | ||
| LICENSE | ||
| README.md | ||
| vite.config.ts | ||
WUI Template using react with Vite and Deno
Deno is a "new" typescript dev system meant to alleviate all the boilerplate that is needed to run typescript. Essentially its just much cleaner.
Vite is used as the "compiler" or "dev server".
This is a 'cleaner' version of the starter template.
Quickstart:
deno installto fetch all dependencies,deno task devstart hot-reloading dev server on port 3000deno task buildwill create a static build atclient/distdeno task testto run the test systemdeno task test:coveragewill test and then create a test report (text and html output)
Structure
client are the "actual" websites that are shown. The server is used for 'hosting' the dev servers. It also hosts a testing version of the server.
If you want to serve fonts or similar things from a public path then add them to client/public, the webserver is setup to serve files from there directly.