vitor-mariano / webassembly-exercise

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebAssembly Exercise

Requirements

  • Git
  • Docker
  • Docker Compose

Getting Started

Clone the repository.

git clone git@github.com:vitor-mariano/webassembly-exercise.git
cd webassembly-exercise

Install the dependencies.

docker-compose run --rm web yarn

Run the development server.

docker-compose up

Now you can access the application typing http://localhost:1234 in the browser.

Development

You must enter the development container to have access to all commands from the development environment.

docker-compose run --rm web bash

Compiling C and C++ files

Use the yarn compile command to generate wasm files from C or C++ files.

yarn compile [input file] -o [output file]

For example

yarn compile src/main.cpp -o src/compiled/main.wasm

About

License:MIT License


Languages

Language:TypeScript 32.5%Language:Dockerfile 25.8%Language:HTML 21.6%Language:C++ 20.1%