NodeMCU-Express
NodeMCU-Express copied to clipboard
Cannot send anything bigger than 1024 bytes
express.static only reads up to a max of 1024 bytes, because the underlying file.read has that max (per default). Anything bigger is cut off.
There is an example on the nodemcu docs on how to send chunks