{"id":20962578,"url":"https://github.com/lathoub/express","last_synced_at":"2025-03-13T07:14:55.109Z","repository":{"id":65228106,"uuid":"585696769","full_name":"lathoub/express","owner":"lathoub","description":"Fast, unopinionated, (very) minimalist web framework for Arduino ESP32","archived":false,"fork":false,"pushed_at":"2023-07-14T08:16:10.000Z","size":467,"stargazers_count":1,"open_issues_count":7,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-20T00:57:01.609Z","etag":null,"topics":["arduino","arduino-library","esp32-arduino","express","html","http","http-server","parser","web","webservice"],"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/lathoub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-05T20:49:23.000Z","updated_at":"2023-07-11T17:24:05.000Z","dependencies_parsed_at":"2024-11-19T06:53:46.743Z","dependency_job_id":null,"html_url":"https://github.com/lathoub/express","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lathoub%2Fexpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lathoub%2Fexpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lathoub%2Fexpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lathoub%2Fexpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lathoub","download_url":"https://codeload.github.com/lathoub/express/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243358318,"owners_count":20277996,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","arduino-library","esp32-arduino","express","html","http","http-server","parser","web","webservice"],"created_at":"2024-11-19T02:35:26.188Z","updated_at":"2025-03-13T07:14:55.084Z","avatar_url":"https://github.com/lathoub.png","language":"C++","readme":"![68747470733a2f2f692e636c6f756475702e636f6d2f7a6659366c4c376546612d3330303078333030302e706e67 (1)](https://user-images.githubusercontent.com/4082369/221396875-3191a433-a5cf-4174-9188-02c06efdd0be.png)\n\n# express for ESP32 using Arduino IDE\nFast, unopinionated, (subset of a) minimalist web framework for ESP32 Arduino.\n\n*looking for help* I'm looking for Arduino drop-in replacements for std::map and std::vector (understanding the memory contraints and possible issues in a ltd memory environment).\n\n## Getting started\n\n### Hello world example\n\nBelow is essentially the simplest Arduino express app you can create. \n\n```cpp\n...\n#include \u003cExpress.h\u003e\nusing namespace EXPRESS_NAMESPACE;\n\nEXPRESS_CREATE_INSTANCE();\n\nvoid setup() {\n  ...\n\n  app.get(F(\"/\"), [](request \u0026req, response \u0026res) {\n    res.send(F(\"Hello World!\"));\n  });\n\n  app.listen(3000, []() { // creates and runs server\n    LOG_I(F(\"Example app listening on port\"), app.port);\n  });\n}\n\nvoid loop() {\n  app.run();\n}\n```\n\n## Dependencies\nEthernet library (for ESP32 with W5500).\n\n## Use of Containers\nThis lib uses 2 types of containers: vector and map and work fine in the ESP32 environment. Not do much so in the Arduino environment and I'm looking for drop-in replacements. Anyone?\n\n## ESP32 with W5500 \nWhen you combine an ESP32 with the W5500 chip, you need to patch Server.h as reported [here](https://github.com/PaulStoffregen/Ethernet/issues/42).\n\nthis `virtual void begin(uint16_t port=0) =0;` must be changed into `virtual void begin() =0;` \n\n- MacOS:   /Users/`user`/Library/Arduino15/packages/esp32/hardware/esp32/2.0.*/cores/esp32\n- Windows: C:\\Users\\\u003cuser\u003e\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware\\esp32\\2.0.*\\cores\\esp32\\Server.h\n              \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flathoub%2Fexpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flathoub%2Fexpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flathoub%2Fexpress/lists"}