mongoose/examples
Sergio R. Caprile ac528caf2b
Merge pull request #2182 from cesanta/keil
simplify RTOS-related Keil examples
2023-05-05 18:49:27 -03:00
..
arduino/w5500 remove references to MIP in examples (comments) 2023-03-15 09:43:22 -03:00
captive-dns-server READMEs, golden update collaterals, etc 2023-02-21 12:07:48 -03:00
device-dashboard MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
embedded-filesystem Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
esp32 Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
esp8266/http-client-server update 2023-03-08 11:44:34 -03:00
file-upload-html-form READMEs, golden update collaterals, etc 2023-02-21 12:07:48 -03:00
file-upload-multiple-posts READMEs, golden update collaterals, etc 2023-02-21 12:07:48 -03:00
file-upload-single-post READMEs, golden update collaterals, etc 2023-02-21 12:07:48 -03:00
http-client fix old comment 2023-03-29 11:46:40 -03:00
http-proxy-client http-proxy-client Makefile 2023-02-21 12:16:39 -03:00
http-restful-server updated Makefiles and symlinks 2023-02-21 16:05:25 -03:00
http-reverse-proxy update Makefiles and symlinks 2023-02-22 16:38:21 -03:00
http-server Fix #2075. Add MG_HTTP_DIRLIST_TIME_FMT, remove MG_HTTP_DIRLIST_TIME and MG_HTTP_DIRLIST_TIME_UTC 2023-02-20 21:25:55 +00:00
http-streaming-client updated Makefiles and symlinks 2023-02-21 16:05:25 -03:00
huge-response Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
infineon/infineon-xmc4700_4800-lwip-rtx-rtos Add RTX-RTOS support 2022-02-23 19:56:37 +02:00
json-rpc-over-websocket Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
live-log updated Makefiles and symlinks 2023-02-21 16:05:25 -03:00
mip-pcap updated Makefiles and symlinks 2023-02-21 16:05:25 -03:00
mip-tap updated Makefiles and symlinks 2023-02-21 16:05:25 -03:00
mqtt-client MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
mqtt-client-aws-iot MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
mqtt-over-ws-client MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
mqtt-server MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
multi-threaded Fix for some compilers 2023-04-11 08:41:14 -03:00
nxp Add more NXP examples and move them to nxp folder 2021-10-22 14:04:15 +03:00
rp2040 remove references to MIP in examples (comments) 2023-03-15 09:43:22 -03:00
smtp-client update Makefiles and symlinks 2023-02-23 11:32:53 -03:00
sntp-time-sync update Makefiles and symlinks 2023-02-23 11:32:53 -03:00
socks5-server update Makefiles and symlinks 2023-02-23 11:32:53 -03:00
stm32 Merge pull request #2182 from cesanta/keil 2023-05-05 18:49:27 -03:00
tcp Merge pull request #2092 from cesanta/standex 2023-02-23 19:07:44 -03:00
ti Add TI RNDIS example 2023-04-28 11:23:40 -03:00
timers update Makefiles and symlinks 2023-02-23 11:32:53 -03:00
uart-bridge MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
udp-ssdp-search update Makefiles and symlinks 2023-02-23 11:32:53 -03:00
video-stream update Makefiles and symlinks 2023-02-23 11:32:53 -03:00
websocket-client updated Makefiles and symlinks 2023-02-24 13:46:31 -03:00
websocket-server updated Makefiles and symlinks 2023-02-24 13:46:31 -03:00
webui-login Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
webui-plain Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
webui-preact updated Makefiles and symlinks 2023-02-24 13:46:31 -03:00
webui-push-rest Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
webui-push-ws Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
webui-rest Remove %H %V %Q %q modifiers 2023-04-14 10:13:22 -03:00
zephyr MQTT: support for properties feature added 2023-04-23 16:35:50 +03:00
README.md Fix #2063 - a typo 2023-02-14 15:12:51 +00:00

Mongoose Network Library Examples

In order to build and run any of the existing examples, please follow: https://mongoose.ws/documentation/#how-to-build-and-run-examples

Contributing

Rules for creating a new example:

  • Makefile golden reference for desktop/server example: http-server
  • Makefile golden reference for the embedded example: stm32/nucleo-f746zg-baremetal
  • An example must build on Windows, Mac and Ubuntu Linux systems
  • Assume that user installed tools according to https://mongoose.ws/tutorials/tools/
  • Makefile must not include any other make files
  • Use CFLAGS for system-specific compilation options
  • Use CFLAGS_MONGOOSE for mongoose-specific compilation options
  • Use $(CFLAGS) $(CFLAGS_MONGOOSE) $(CFLAGS_EXTRA) to compile
  • If external repository is required, download it on demand using git shallow clone. See embedded example golden reference
  • Keep Makefile as short as possible, but verbose to understand it easily
  • Symlink files when required, like mongoose.c, ca.pem, etc. Make no copies
  • Example's README.md should contain only the title and the link to mongoose.ws tutorial page