Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexpineda/cascbridge

http file server and UI for casclib
https://github.com/alexpineda/cascbridge

Last synced: 10 days ago
JSON representation

http file server and UI for casclib

Awesome Lists containing this project

README

        

# CASCBridge - Starcraft Local Asset Server

An http file server and UI for `CASC` archive data. Used for blacksheepwall.tv but can be used for any other prupose as well.

[Download, extract, and run the application](https://github.com/alexpineda/cascbridge/releases), assign the port, assign your Starcraft directory and press `Start`.

![image](https://github.com/alexpineda/cascbridge/assets/586716/03f5b7ba-b183-426e-8cba-8f89ea3848e6)

## Javascript Usage Example

```ts

const animBuffer = await fetch("http://localhost:8080/anim/main_000.anim").then(res => res.arrayBuffer());

```