diff --git a/README.md b/README.md index 1e882b8..5d01052 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # [nodemcu-httpserver](https://github.com/marcoskirsch/nodemcu-httpserver) A (very) simple web server written in Lua for the ESP8266 running the NodeMCU firmware. -[From the NodeMCU FAQ](https://nodemcu.readthedocs.org/en/dev/en/faq/#how-do-i-minimise-the-footprint-of-an-application): +[From the NodeMCU FAQ](https://nodemcu.readthedocs.org/en/dev/en/lua-developer-faq/#how-do-i-minimise-the-footprint-of-an-application): > If you are trying to implement a user-interface or HTTP webserver in your ESP8266 then > you are really abusing its intended purpose. When it comes to scoping your ESP8266 diff --git a/TODO.md b/TODO.md index 6be6681..932cc64 100644 --- a/TODO.md +++ b/TODO.md @@ -4,4 +4,3 @@ * Need PUT example. How? * Rename args.lua to get.lua, so it matches post.lua convention. * How can I test the whole JSON post thing? -* BufferedConnection seems too clever. Simplify by removing the buffering and only providing yielding. Worth it? Will make server slower. diff --git a/http/cars-ferrari.jpg b/http/cars-ferrari.jpg new file mode 100644 index 0000000..8ac63b7 Binary files /dev/null and b/http/cars-ferrari.jpg differ diff --git a/http/cars-lambo.jpg b/http/cars-lambo.jpg new file mode 100644 index 0000000..fb754f0 Binary files /dev/null and b/http/cars-lambo.jpg differ diff --git a/http/cars-mas.jpg b/http/cars-mas.jpg new file mode 100644 index 0000000..73ec952 Binary files /dev/null and b/http/cars-mas.jpg differ diff --git a/http/cars-porsche.jpg b/http/cars-porsche.jpg new file mode 100644 index 0000000..f78469f Binary files /dev/null and b/http/cars-porsche.jpg differ diff --git a/http/cars.html b/http/cars.html new file mode 100644 index 0000000..6467a8b --- /dev/null +++ b/http/cars.html @@ -0,0 +1,17 @@ + + + + + Nice cars + + +

Nice cars!

+

This page loads "large" images of fancy cars. It is meant to serve as a stress test for nodemcu-httpserver.

+
Ferrari
+
Lamborghini
+
Maserati
+
Porsche
+ + + + diff --git a/http/index.html b/http/index.html index 9e2989e..5bd9224 100644 --- a/http/index.html +++ b/http/index.html @@ -20,6 +20,7 @@

Serve me some pages!