Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: karlp/svelteesp32
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: BCsabaEngine/svelteesp32
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 30 files changed
  • 2 contributors

Commits on Mar 31, 2025

  1. feat: Add native esp-idf template (BCsabaEngine#42)

    Tested with generating a Vue3 app for esp32, using esp-idf v5.3.2
    This is perfectly functional, but there's always room for improvement.
    Published in the hope it may be useful for others.
    
    Note: no examples for esp-idf. Not sure where best to put them.
    
    mini example
    ```
     #include <esp_http_server.h>
     #include "your_generated_file.h"
    void start_http_server(void)
    {
    	httpd_handle_t httpd;
    	httpd_config_t config = HTTPD_DEFAULT_CONFIG();
    	config.max_uri_handlers = SVELTEESP32_COUNT + xxx;
    
    	LOGI("Starting server on port: '%d'", config.server_port);
    	ESP_ERROR_CHECK(httpd_start(&httpd, &config));
    	initSvelteStaticFiles(httpd);
    	// any other handlers you need....
    }
    ```
    
    Tested with and without etag, and with and without gzip.
    
    Signed-off-by: Karl Palsson <[email protected]>
    karlp authored Mar 31, 2025
    Configuration menu
    Copy the full SHA
    d901141 View commit details
    Browse the repository at this point in the history
  2. feat: esp-idf (BCsabaEngine#43)

    * chore: deps
    
    * chore: demo deps
    
    * feat: espidf demo
    
    * feat: esp idf template
    
    * release: 1.9.0
    BCsabaEngine authored Mar 31, 2025
    Configuration menu
    Copy the full SHA
    7c3d607 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2025

  1. chore: deps

    BCsabaEngine committed Apr 15, 2025
    Configuration menu
    Copy the full SHA
    5f4fc8a View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2025

  1. chore: deps

    BCsabaEngine committed Apr 27, 2025
    Configuration menu
    Copy the full SHA
    48268f5 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2025

  1. chore: deps

    BCsabaEngine committed May 23, 2025
    Configuration menu
    Copy the full SHA
    5347579 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2025

  1. chore: deps

    BCsabaEngine committed Jun 15, 2025
    Configuration menu
    Copy the full SHA
    e7d0f6a View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2025

  1. release: 1.9.1

    BCsabaEngine committed Sep 13, 2025
    Configuration menu
    Copy the full SHA
    7e80c84 View commit details
    Browse the repository at this point in the history
  2. chore: node20+

    BCsabaEngine committed Sep 13, 2025
    Configuration menu
    Copy the full SHA
    5928afb View commit details
    Browse the repository at this point in the history
Loading