Skip to content

ricochetuniverse/nuvelocity-unpacker-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nuvelocity-unpacker-web

Fork of NuVelocity.Unpacker running on the web using WebAssembly.

View live website: https://ricochetuniverse.github.io/nuvelocity-unpacker-web/

Development

Install .NET 9.0 SDK.

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