README
UNDER CONSTRUCTION: NOT YET WORKING
:octopus: Polipod
Demo using wasm for multiple programming languages on the front end (client side only / browser based)
View on computer / phone here
:computer: :phone:No need to download or install. The heading of this section is a link to view the demo.
:wrench: Run locally for development
Due to CORS (Cross Origin Resource Sharing) rules, the JavaScript modules cannot be accessed if the index.html
page is opened in a web browser directly from the local file system. Instead index.html
can be viewed by serving it from a local server.
For example, if you have Python 3 installed you can run the following from the docs
folder:
python -m http.server
Visiting the following address in your web browser will then show the index.html
page with JavaScript modules imported successfully:
http://0.0.0.0:8000
If port 8000 is already in use on your machine, you can specify a port of your choice as follows:
python -m http.server 12345
Then view at the corresponding address in your web browser:
http://0.0.0.0:12345