https://github.com/cotyhamilton/letty
A typescript project template based on traditional web practices
https://github.com/cotyhamilton/letty
deno hono tailwindcss
Last synced: 2 months ago
JSON representation
A typescript project template based on traditional web practices
- Host: GitHub
- URL: https://github.com/cotyhamilton/letty
- Owner: cotyhamilton
- License: cc0-1.0
- Created: 2025-05-22T22:51:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-08T20:46:26.000Z (12 months ago)
- Last Synced: 2025-07-08T21:39:49.338Z (12 months ago)
- Topics: deno, hono, tailwindcss
- Language: CSS
- Homepage: https://letty.cotyhamilton.deno.net
- Size: 60.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# letty
A typescript project template based on traditional web practices
https://letty.cotyhamilton.deno.net/
## features
- SSR via JSX templating
- Client-side javascript
- Tailwind + shadcn/ui styles
## getting started
Run the development server
```bash
deno task dev
```
Test
```bash
# unit tests
deno test
# e2e tests
deno run -A npm:playwright install --with-deps
deno task test:e2e
```
Serve production
```bash
deno serve -R=./static src/main.ts
```
Container
```bash
docker build -t letty .
docker run -p 8000:8000 letty
```
- [deno](https://deno.com/)
- typescript runtime
- [hono](https://hono.dev/)
- web framework
- [basecoat](https://basecoatui.com/)
- css only shadcn/ui style components