Skip to content

Zazzik1/Mandelbrot

Repository files navigation

Link to the preview: Mandelbrot

Interactive representation of the Mandelbrot series using Javascript, Web Workers and HTML Canvas element. Thanks to the multiprocessing, it allows for quick obtaining of high-resolution fractals.

How to use?

Installation:

git clone https://github.com/Zazzik1/Mandelbrot
cd Mandelbrot
npm ci # installation of dependencies

Run (development mode):

npm run dev

After that you can navigate to the following address and see the live reload: http://localhost:4000.

Build:

npm run build

This command generates files in the ./build directory, which must be hosted as static files by any static server, e.g by using npx serve or python3 -m http.server commands.