barandemirbas / ambystoma

A small HTTP server including live reload.

Home Page:https://pkg.go.dev/github.com/barandemirbas/ambystoma

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go Report Card Go Reference

What is Ambystoma?

Ambystoma is an HTTP server for Frontend Developers. You can serve your HTML, JavaScript and CSS files with live reload.

Usage

ambystoma

or use with port option

ambystoma -p 8081

Install

Source

git clone https://github.com/barandemirbas/ambystoma.git && cd ambystoma && make build && sudo cp ./bin/ambystoma /usr/bin/ && sudo chmod +x /usr/bin/ambystoma

Go required for install from source.

Linux 64-BIT

sudo wget https://github.com/barandemirbas/ambystoma/releases/download/v1.1.0/ambystoma-linux-x64 -O /usr/bin/ambystoma && sudo chmod +x /usr/bin/ambystoma

Linux 32-BIT

sudo wget https://github.com/barandemirbas/ambystoma/releases/download/v1.1.0/ambystoma-linux-x32 -O /usr/bin/ambystoma && sudo chmod +x /usr/bin/ambystoma

Linux 64-BIT ARM

sudo wget https://github.com/barandemirbas/ambystoma/releases/download/v1.1.0/ambystoma-linux-arm64 -O /usr/bin/ambystoma && sudo chmod +x /usr/bin/ambystoma

Linux 32-BIT ARM

sudo wget https://github.com/barandemirbas/ambystoma/releases/download/v1.1.0/ambystoma-linux-arm32 -O /usr/bin/ambystoma && sudo chmod +x /usr/bin/ambystoma

MacOS

curl -LJO https://github.com/barandemirbas/ambystoma/releases/download/v1.1.0/ambystoma-mac-x64 && mv ambystoma-mac-x64 /usr/local/bin/ambystoma && chmod +x /usr/local/bin/ambystoma

MacOS M1

curl -LJO https://github.com/barandemirbas/ambystoma/releases/download/v1.1.0/ambystoma-mac-arm64 && mv ambystoma-mac-arm64 /usr/local/bin/ambystoma && chmod +x /usr/local/bin/ambystoma

Windows 64-BIT

Download Here.

Windows 32-BIT

Download Here.

About

A small HTTP server including live reload.

https://pkg.go.dev/github.com/barandemirbas/ambystoma

License:MIT License


Languages

Language:Go 60.2%Language:Makefile 33.9%Language:HTML 6.0%