https://github.com/notangelmario/hardbound
A SolidJS framework for Deno
https://github.com/notangelmario/hardbound
deno framework javascript oak solid solidjs typescript
Last synced: about 1 year ago
JSON representation
A SolidJS framework for Deno
- Host: GitHub
- URL: https://github.com/notangelmario/hardbound
- Owner: notangelmario
- Archived: true
- Created: 2023-01-31T00:17:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-06T11:28:51.000Z (over 2 years ago)
- Last Synced: 2025-02-10T00:18:23.440Z (about 1 year ago)
- Topics: deno, framework, javascript, oak, solid, solidjs, typescript
- Language: TypeScript
- Homepage: https://hardbound.deno.dev
- Size: 13 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hardbound
Hardbound is a SolidJS framework built for Deno.
## Notes:
* Very unstable, lots of things might change, use at your risk!
* Hardbound is mostly a client-side framework. There is no server-side rendering (yet?)
* JSX Automatic Runtime doesn't work for the moment, you will need to `import h from "solid-js/h"` in every file
## Features:
* No compilation needed
* Uses SolidJS for performance
* Hot Reloading for better DX
## What's new?
* Code splitting
* Caching
* Better performance
## Getting started
To make a Hardbound project:
```
deno run -A https://deno.land/x/hardbound/init.ts my-project
```
You can also opt in for TypeScript support by passing `-t` or `--typescript`:
```
deno run -A https://deno.land/x/hardbound/init.ts -t my-project
```