nodemcu-httpserver
nodemcu-httpserver copied to clipboard
A (very) simple web server written in Lua for the ESP8266 firmware NodeMCU.
In light of #127 it would be useful to have two options for uploading files. This PR adds ability to use `nodemcu-tool` instead of `nodemcu-uploader`. This feature is controlled by...
Makefile uses nodemcu-uploader (https://github.com/kmpm/nodemcu-uploader) but the tool no longer works. We need to either replace the tool or work on a fix!
Simple changes focussed on static file serving: Drops the req table when it's never used by the fileServeFunctions, (-static and -error) by setting it to nil. Uses the socket directly...
At the moment nodemcu-httpserver project has 23 files with unix-style line terminators and 13 files with dos-style line terminators.There can only be one..
I would like to try to combine nodemcu-httpserver with a ledstrip controller. For that i need to constantly send codes to the ledstrip. How can i share cpu time with...
I've made a fork of the Lua WebIDE from @moononournation (cf: https://github.com/Godzil/nodemcu-webide ) To make thing easier to evolve and always use the latest version of httpserver (and not use...
Wouldn't be better to use a mime type like "application/octet-stream" than "text/plain" for unknown types? https://github.com/marcoskirsch/nodemcu-httpserver/blob/28fbb6e7a7b7efe06dac092bbf0a8f8c1ae9c799/httpserver-header.lua#L18 I know that we are not going to serve really complicated thing with this...
When this project started, all the server code was in a single file. Now it's spread across lots of little files, all in the root directory: httpserver-b64decode.lua httpserver-basicauth.lua httpserver-compile.lua httpserver-conf.lua...
Right now it's all-or-nothing. I would like to have the ability to only use HTTP Authentication on some pages but not others. I imagine this by having a regular expression...
Seems like it's close https://gist.github.com/creationix/079e11345249525c7e2e