All Projects → embedthis → Appweb

embedthis / Appweb

Licence: other
Appweb Community Edition Embedded Web Server

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Appweb

Webperl
Run Perl in the browser with WebPerl!
Stars: ✭ 221 (+12.76%)
Mutual labels:  web-application, web-application-framework
Saea
SAEA.Socket is a high-performance IOCP framework TCP based on dotnet standard 2.0; Src contains its application test scenarios, such as websocket,rpc, redis driver, MVC WebAPI, lightweight message server, ultra large file transmission, etc. SAEA.Socket是一个高性能IOCP框架的 TCP,基于dotnet standard 2.0;Src中含有其应用测试场景,例如websocket、rpc、redis驱动、MVC WebAPI、轻量级消息服务器、超大文件传输等
Stars: ✭ 318 (+62.24%)
Mutual labels:  websockets, webserver
EthernetWebServer
This is simple yet complete WebServer library for AVR, Portenta_H7, Teensy, SAM DUE, SAMD21/SAMD51, nRF52, STM32, RP2040-based, etc. boards running Ethernet shields. The functions are similar and compatible to ESP8266/ESP32 WebServer libraries to make life much easier to port sketches from ESP8266/ESP32. Coexisting now with `ESP32 WebServer` and…
Stars: ✭ 118 (-39.8%)
Mutual labels:  webserver, websockets
Php Security Check List
PHP Security Check List [ EN ] 🌋 ☣️
Stars: ✭ 262 (+33.67%)
Mutual labels:  web-application, web-application-framework
Start Fastapi
a lightweight web framework based on fastapi
Stars: ✭ 48 (-75.51%)
Mutual labels:  web-application, web-application-framework
Node Red Contrib Uibuilder
Easily create data-driven web UI's for Node-RED using any (or no) front-end library. VueJS and bootstrap-vue included but change as desired.
Stars: ✭ 215 (+9.69%)
Mutual labels:  web-application, websockets
Odi
🌪🌌 Opinionated, Declarative, Idiomatic framework for building scalable, supportable and reliable enterprise applications.
Stars: ✭ 264 (+34.69%)
Mutual labels:  websockets, webserver
Wok
A cherrypy framework for multi-purpose plug-ins
Stars: ✭ 215 (+9.69%)
Mutual labels:  websockets, webserver
Embedio
A tiny, cross-platform, module based web server for .NET
Stars: ✭ 1,007 (+413.78%)
Mutual labels:  websockets, webserver
Microwebsrv
A micro HTTP Web server that supports WebSockets, html/python language templating and routing handlers, for MicroPython (used on Pycom modules & ESP32)
Stars: ✭ 420 (+114.29%)
Mutual labels:  websockets, webserver
Goahead
GoAhead Web Server
Stars: ✭ 321 (+63.78%)
Mutual labels:  web-application, webserver
Facil.io
Your high performance web application C framework
Stars: ✭ 1,393 (+610.71%)
Mutual labels:  websockets, webserver
Awesome Django
Repository mirror of GitLab: https://gitlab.com/rosarior/awesome-django This repository is not monitored for issues, use original at GitLab.
Stars: ✭ 8,527 (+4250.51%)
Mutual labels:  web-application, web-application-framework
Revel
A high productivity, full-stack web framework for the Go language.
Stars: ✭ 12,463 (+6258.67%)
Mutual labels:  web-application, web-application-framework
Claws
Awesome WebSocket CLient - an interactive command line client for testing websocket servers
Stars: ✭ 187 (-4.59%)
Mutual labels:  websockets
Dotnetify React Template
Real-time React SPA template using dotNetify.
Stars: ✭ 191 (-2.55%)
Mutual labels:  websockets
Goaccess
GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser.
Stars: ✭ 14,096 (+7091.84%)
Mutual labels:  webserver
Ws Tcp Relay
A simple relay between WebSocket clients and TCP servers
Stars: ✭ 186 (-5.1%)
Mutual labels:  websockets
My Ttgo Watch
Firmware for a ttgo-watch2020-v1 smartwatch based on ESP32 from LilyGo.
Stars: ✭ 192 (-2.04%)
Mutual labels:  webserver
Speechtotext Websockets Javascript
SDK & Sample to do speech recognition using websockets in Javascript
Stars: ✭ 191 (-2.55%)
Mutual labels:  websockets

Embedthis Appweb Community Edition

Appweb is a compact, fast and secure web server for embedded applications. It supports HTTP with a web server and HTTP client utility.

This repository does not contain the Appweb Enterprise Edition source code, but it is the repository for issues and bug reports for both the Appweb Community and Enterprise editions. Contact [email protected] for access to the Enterprise Edition source code.

Branches

The repository has several branches:

  • master - Most recent release of the software.
  • X.X - Archived prior release branches for maintenance.

Licensing

See LICENSE.md for details.

Documentation

See https://www.embedthis.com/appweb/doc/index.html.

Building from Source

You can build Appweb with make, Visual Studio, Xcode or MakeMe.

The IDE projects and Makefiles will build with ESP and SSL using the MbedTLS TLS stack. To build with CGI, OpenSSL or other modules, read the projects/README.md for details.

To Build with Make:

Linux or MacOS

make

or to see the commands as they are invoked:

make SHOW=1

You can pass make variables to tailor the build. For a list of variables:

make help

To run

make run

Windows

First open a Windows cmd prompt window and then set your Visual Studio environment variables by running vcvarsall.bat from your Visual Studio installation folder.

Then run a Windows cmd prompt window and type:

make

To Build with Visual Studio:

Open the solution file at:

projects/appweb-windows-default.sln

Then select Build -> Solution.

To run the debugger, right-click on the "appweb" project and set it as the startup project. Then modify the project properties and set the Debugging configuration properties. Set the working directory to be:

$(ProjectDir)\..\..\test

Set the arguments to be -v

Then start debugging.

To Build with Xcode.

Open the solution file:

projects/appweb-macosx-default.sln

Choose Product -> Scheme -> Edit Scheme, and select "Build" on the left of the dialog. Click the "+" symbol at the bottom in the center and then select all targets to be built. Before leaving this dialog, set the debugger options by selecting "Run/Debug" on the left hand side. Under "Info" set the Executable to be "appweb", set the launch arguments to be "-v" and set the working directory to be an absolute path to the "./test" directory in the appweb source. The click "Close" to save.

Click Project -> Build to build.

Click Project -> Run to run.

To build with MakeMe:

To install MakeMe, download it from https://www.embedthis.com/makeme/.

./configure
me

For a list of configure options:

./configure --help

To install:

If you have built from source using Make or MakeMe, you can install the software using:

sudo make install

or

sudo me install

To uninstall

sudo make uninstall

or

sudo me uninstall

To Run:

The src/server directory contains a minimal appweb.conf suitable for production use without SSL. The test directory contains an appweb.conf that is fully configured for testing. When using the src/server/appweb.conf, change to the src/server directory to run. When using the test/appweb.conf, change to the test directory to run.

To Test:

Build with MakeMe and then:

./configure
me
me test

Resources

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].