1.0.0 • Published 3 years ago

polipod v1.0.0

Weekly downloads
51
License
ISC
Repository
github
Last release
3 years ago

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.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