Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blankeos/solid-hop
💙 A simpler create-solid alternative to SolidStart.
https://github.com/blankeos/solid-hop
boilerplate hono solid vike
Last synced: 4 days ago
JSON representation
💙 A simpler create-solid alternative to SolidStart.
- Host: GitHub
- URL: https://github.com/blankeos/solid-hop
- Owner: Blankeos
- Created: 2024-06-11T16:19:07.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T15:27:41.000Z (20 days ago)
- Last Synced: 2024-11-02T08:06:57.180Z (4 days ago)
- Topics: boilerplate, hono, solid, vike
- Language: TypeScript
- Homepage:
- Size: 409 KB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐇 Solid Hop
💙 A **minimal** and **unopinionated** Vike + Solid + Hono starter.
❤️ We love Vike and Solid, but it might be overwhelming to setup. The goal of this starter is to get you up and running quickly with good defaults without getting in the way of your opinions.
This is more or less what you would get from a starter with `create next-app` or `create svelte` or `create solid`.
If you want a more opinionated and fully-featured boilerplate instead: http://github.com/blankeos/solid-launch
## Tech Stack:
1. Vike + Hono - For SSR + Your own Server.
2. SolidJS
3. Bun (Can swap this with Node easily if you want).
4. Tools: ESLint, Prettier## Quick Start
1. Clone
```sh
git clone https://github.com/blankeos/solid-hop
cd
rm -rf .git # This is your app. Start the commits fresh :D
```1. Install
```sh
bun install
```3. Run dev server
```sh
bun dev
```## Building and Deployment
1. Build
```sh
bun run build
```2. Wherever you deploy, just run make sure that this is ran:
```sh
bun run preview # Just runs server.ts
```