https://github.com/54ac/ecwolf-js-frontend
Frontend for ECWolf-JS, used for launching games like Wolfenstein 3D in the browser.
https://github.com/54ac/ecwolf-js-frontend
ecwolf emscripten frontend typescript wolfenstein-3d
Last synced: 3 months ago
JSON representation
Frontend for ECWolf-JS, used for launching games like Wolfenstein 3D in the browser.
- Host: GitHub
- URL: https://github.com/54ac/ecwolf-js-frontend
- Owner: 54ac
- Created: 2024-06-13T00:06:57.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T23:39:51.000Z (10 months ago)
- Last Synced: 2025-01-05T06:37:39.277Z (5 months ago)
- Topics: ecwolf, emscripten, frontend, typescript, wolfenstein-3d
- Language: TypeScript
- Homepage: https://54ac.ovh:5490/
- Size: 9.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ecwolf-js-frontend
### What is this?
This is a simple, minimal frontend for [ECWolf-JS](https://github.com/54ac/ecwolf-js), a WebAssembly port of [ECWolf](https://maniacsvault.net/ecwolf/), used for launching games like Wolfenstein 3D in the browser. Written in TypeScript. Launches game from remote or local files and supports command line arguments. Uses JSZip to unpack zip files in the browser. Game saves and config saved by the Emscripten runtime in the browser's IndexedDB.
### Where can I play this?
**[Check out the demo.](https://54ac.ovh:5490/)**
### How do I launch this myself?
Supply the following files:
- ecwolf.pk3 from [the latest release of ECWolf](https://maniacsvault.net/ecwolf/download.php) to /public/static
- ecwolf.wasm and ecwolf.js from [the latest release of ECWolf-JS](https://github.com/54ac/ecwolf-js/releases) (custom frontend zip) to /public/static and /src/static respectively
- shareware.zip containing the IWADs (.wl1 files) from [the shareware version of Wolfenstein 3D](https://archive.org/details/wolf3dsw) to /public/static (optional)Then, use npm to launch a web server using Vite:
```
npm install
npm start
```