nodemcu-httpserver icon indicating copy to clipboard operation
nodemcu-httpserver copied to clipboard

A (very) simple web server written in Lua for the ESP8266 firmware NodeMCU.

Results 15 nodemcu-httpserver issues
Sort by recently updated
recently updated
newest added

In spite of what the nodemcu doco says, it appears that filenames > 27 characters (not 32) cause file.open to throw a panic. Utterly knucklehead patch attached; [httpserver.lua.patch.txt](https://github.com/marcoskirsch/nodemcu-httpserver/files/540347/httpserver.lua.patch.txt)

bug

The idea is to alter the filename of the request and remember, that it is an error url. and then reprocess it. I am afraid this will require some refactoring...

enhancement

We use Base64 decoding in the implementation of Basic HTTP Authentication. NodeMCU provides Base64 decoding through the [encoder module](https://nodemcu.readthedocs.io/en/master/en/modules/encoder/#encoder-module) We should get rid of [httpserver-b64decode.lua](https://github.com/marcoskirsch/nodemcu-httpserver/blob/master/httpserver-b64decode.lua) (too bad, at the time...

enhancement

Hello, I've just tested the latest version with a esp8266-01 (1MB flash) I added only html/index.html with a little content `OK` I can load the content with my browser, but...

The bufferedConnection code has been pulled out into its own file. This improves usability, but the result needs more work. Specifically, usage depends on a socket onSent() callback, which is...