Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lajbel/the-juicy-edit
🎨 A dress-up game
https://github.com/lajbel/the-juicy-edit
dress-up game kaboom
Last synced: about 2 months ago
JSON representation
🎨 A dress-up game
- Host: GitHub
- URL: https://github.com/lajbel/the-juicy-edit
- Owner: lajbel
- Created: 2022-09-08T12:36:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-01T23:47:15.000Z (5 months ago)
- Last Synced: 2024-10-11T15:43:44.685Z (2 months ago)
- Topics: dress-up, game, kaboom
- Language: JavaScript
- Homepage:
- Size: 22.2 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Folder structure
- `src` - source code for your kaplay project
- `www` - distribution folder, contains your index.html, built js bundle and static assets
- `src-tauri` - tauri project folder, contains tauri config file, icons, rust source if you need native code## Development
```sh
$ pnpm run dev
```will start a dev server at http://localhost:8000
## Distribution
```sh
$ pnpm run build
```will build your js files into `www/main.js`
```sh
$ pnpm run bundle
```will build your game and package into a .zip file, you can upload to your server or itch.io / newground etc.
## Desktop
This project uses tauri for desktop builds, you have to have `rust` installed on your system for desktop to work, check out [tauri setup guide](https://tauri.app/v1/guides/getting-started/prerequisites/)
For tauri native APIs look [here](https://tauri.app/v1/api/js/)
```sh
$ pnpm run dev:desktop
```will start the dev server and a native window that servers content from that dev server
```sh
$ pnpm run build:desktop
```will create distributable native app package