Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sverrirab/mandelbrot-go

Simple mandelbrot set webserver written in go (golang)
https://github.com/sverrirab/mandelbrot-go

golang mandelbrot

Last synced: about 2 months ago
JSON representation

Simple mandelbrot set webserver written in go (golang)

Awesome Lists containing this project

README

        

# Mandelbrot-go
Simple Mandelbrot set webservice written in go (golang).

Install [golang](https://golang.org/doc/install), pull the code and:

```bash
go run .
```

Browse to [localhost:8090](http://localhost:8090/) and view the results:

![Mandelbrot go in action](./docs/media/mbrot.gif "Mandelbrot go in action")

## Testing

```bash
go test
```

## Background
This was written by me as an exercise in learning go. The code is as simple as possibly demonstrating a simple
webserver with a very simple template and a [Mandelbrot](https://en.wikipedia.org/wiki/Mandelbrot_set) webservice that
creates images on the fly. Just over 100 lines of golang code.

There are many more better tools to view the mandelbrot set but this is a fun way to play with go.

# Build status

![Build Status](https://travis-ci.com/sverrirab/mandelbrot-go.svg?branch=master)

# License
MIT (very permissive)