Skip to content

Instantly share code, notes, and snippets.

@anoochit
Created January 30, 2015 05:00
Show Gist options
  • Select an option

  • Save anoochit/ba80712137b4a99bbb26 to your computer and use it in GitHub Desktop.

Select an option

Save anoochit/ba80712137b4a99bbb26 to your computer and use it in GitHub Desktop.
httpserver.lua
-- a simple http server
srv=net.createServer(net.TCP)
srv:listen(80,function(conn)
conn:on("receive",function(conn,payload)
print(payload)
conn:send("<h1> Hello, NodeMcu.</h1>")
end)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment