https://github.com/blankeos/sprite-slicer
🖌️ Slice sprites with Good UI/UX for game dev.
https://github.com/blankeos/sprite-slicer
Last synced: 8 months ago
JSON representation
🖌️ Slice sprites with Good UI/UX for game dev.
- Host: GitHub
- URL: https://github.com/blankeos/sprite-slicer
- Owner: Blankeos
- Created: 2025-03-06T17:42:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T18:43:31.000Z (over 1 year ago)
- Last Synced: 2025-03-07T19:32:09.508Z (over 1 year ago)
- Language: TypeScript
- Size: 429 KB
- Stars: 0
- 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
```