polipod v1.0.0
UNDER CONSTRUCTION: NOT YET WORKING
:octopus: Polipod
Demo using wasm for multiple programming languages on the front end (client side only / browser based)
:computer: :phone: View on computer / phone here
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.serverVisiting the following address in your web browser will then show the index.html page with JavaScript modules imported successfully:
http://0.0.0.0:8000If port 8000 is already in use on your machine, you can specify a port of your choice as follows:
python -m http.server 12345Then view at the corresponding address in your web browser:
http://0.0.0.0:123455 years ago