Fork of NuVelocity.Unpacker running on the web using WebAssembly.
View live website: https://ricochetuniverse.github.io/nuvelocity-unpacker-web/
Install the .NET workload:
dotnet workload install wasm-tools-net8
Compile the .NET app:
rm -rf web/public/dotnet/
dotnet publish -c Debug src/
Then run the React web app:
cd web
npm install
npm run dev
To build for production:
rm -rf web/public/dotnet/
dotnet publish -c Release src/
npm run build