{"id":37510118,"url":"https://github.com/sukkopera/webbino","last_synced_at":"2026-01-16T08:01:19.884Z","repository":{"id":4370133,"uuid":"5506672","full_name":"SukkoPera/Webbino","owner":"SukkoPera","description":"A universal webserver for Arduino, capable of delivering dynamic contents","archived":false,"fork":false,"pushed_at":"2023-06-17T15:13:17.000Z","size":432,"stargazers_count":27,"open_issues_count":2,"forks_count":9,"subscribers_count":8,"default_branch":"master","last_synced_at":"2023-06-17T16:27:30.084Z","etag":null,"topics":["arduino","dynamic-contents","ethernet-shield","hacktoberfest","html","html-page","networking","sd-card","webserver","wifi"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SukkoPera.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"ko_fi":"openretroworks"}},"created_at":"2012-08-22T08:25:39.000Z","updated_at":"2023-07-05T15:39:13.547Z","dependencies_parsed_at":"2023-07-11T22:33:55.210Z","dependency_job_id":null,"html_url":"https://github.com/SukkoPera/Webbino","commit_stats":null,"previous_names":[],"tags_count":6,"template":null,"template_full_name":null,"purl":"pkg:github/SukkoPera/Webbino","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SukkoPera%2FWebbino","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SukkoPera%2FWebbino/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SukkoPera%2FWebbino/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SukkoPera%2FWebbino/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SukkoPera","download_url":"https://codeload.github.com/SukkoPera/Webbino/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SukkoPera%2FWebbino/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478047,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arduino","dynamic-contents","ethernet-shield","hacktoberfest","html","html-page","networking","sd-card","webserver","wifi"],"created_at":"2026-01-16T08:00:45.295Z","updated_at":"2026-01-16T08:01:19.053Z","avatar_url":"https://github.com/SukkoPera.png","language":"C++","funding_links":["https://ko-fi.com/openretroworks"],"categories":[],"sub_categories":[],"readme":"# Webbino\n\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/SukkoPera/Webbino)\n![GitHub Release Date](https://img.shields.io/github/release-date/SukkoPera/Webbino?color=blue\u0026label=last%20release)\n![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/SukkoPera/Webbino/latest?color=orange)\n[![arduino/arduino-lint-action](https://github.com/SukkoPera/Webbino/actions/workflows/main.yml/badge.svg)](https://github.com/SukkoPera/Webbino/actions/workflows/main.yml)\n\nWebbino is a webserver for Arduino.  I originally wrote it for my [SmartStrip project](https://github.com/SukkoPera/SmartStrip), which required several unique\nfeatures which were not present in other webservers that were available at the time:\n- Compatible with many network interfaces:\n  - WizNet W5100: Original Ethernet Shield\n  - WizNet W5500: [Ethernet Shield 2](https://store.arduino.cc/arduino-ethernet-shield-2)\n  - ENC28J60: [KMTronic DINo](http://sigma-shop.com/product/72/web-internet-ethernet-controlled-relay-board-arduino-compatible-rs485-usb.html) (first version)\n  - [Teensy 4.1 Native Ethernet](https://www.pjrc.com/store/teensy41.html)\n  - WINC1500 (Wi-Fi): [WiFi Shield 101](https://www.arduino.cc/en/Main/ArduinoWiFiShield101), [MKR1000](https://www.arduino.cc/en/Main/ArduinoMKR1000) - EXPERIMENTAL, MIGHT NOT WORK!\n  - ESP8266 (Wi-Fi): Either as an add-on to Arduino, like the MLT shield, or standalone like [NodeMCU](http://www.nodemcu.com), WeMos D1/[D1 Mini](https://www.wemos.cc/en/latest/d1/d1_mini.html), etc...\n  - [ESP32 (Wi-Fi)](http://esp32.net)\n- HTML pages and other data can be embedded in the code. This avoids the need of an SD card for simple sites.\n- If you prefer, HTML pages can also be stored on an SD card (long file names are supported!)\n- Tags like `$WHATEVER$` in HTML pages can be replaced at page request time, allowing the delivery of dynamic contents.\n- Arbitrary functions can be associated to a page, to perform any needed actions: turn on LEDs, relays, save data to EEPROM, etc.\n- Supports HTTP Basic Authentication.\n\nTo learn how to use the library, I strongly recommend to have a look at the vast number of examples that are included with it.\n\n**Full documentation, including a step-by-step tutorial, is available on [the Webbino wiki](https://github.com/SukkoPera/Webbino/wiki)**.\n\n## License\nWebbino is free software: you can redistribute it and/or modify it under the terms of version 3 of the GNU General Public License as published by the Free Software Foundation.\n\nWebbino is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Webbino. If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n\n## Support\nPlease use the [official github page](https://github.com/SukkoPera/Webbino) to report issues, suggestions and such.\n\n## Thanks\nThanks to [gpb01](https://github.com/gpb01) for [Teensy 4.1](https://www.pjrc.com/store/teensy41.html) support and other contributions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsukkopera%2Fwebbino","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsukkopera%2Fwebbino","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsukkopera%2Fwebbino/lists"}