WasmNow

(β˜… 62)

Fast WebAssembly Baseline Compiler

  • CMakeLists.txt
  • main.cpp
  • oss-for-a-better-world.md
  • pochivm-build
  • README.md
  • test_parser.cpp
  • wasi_core.h
  • wasi_impl.cpp
  • wasi_impl.h

# Installation Guide

1. Get the code
git clone https://github.com/sillycross/WasmNow

Downloads the entire project code from GitHub to your computer.

cd WasmNow

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f dockerfile/Dockerfile -t wasmnow .

Builds a runnable image based on the Dockerfile.

docker run -p 8080:80 wasmnow

Runs the built image as an actual container.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

3. CMake

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • CMake The tool used to generate build configuration.
  • C/C++ 컴파일러 Windows needs Visual Studio (Community edition, free), macOS needs Xcode Command Line Tools, Linux needs the gcc/g++ package.
python3 pochivm-build cmake production

Runs the Python script (or module).

βœ… Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).

Pulled directly from this repo's README.

// repository documentation