Aug 15

Allow server-side execution of custom code

I mainly use custom code to generate a list of available products and their prices based on external APIs. Using client-side JS for that is fine, but using server-side JS would have several advantages: - Generated output would be available at loading, making it more likely to be crawled - CORS errors accessing external public APIs could be avoided - APIs that require API keys could be accessed without exposing the API key in the frontend My request: Add an option to execute custom code server-side. Only the output of this code is rendered on the frontend; the code itself (including secrets) is not present in the final HTML the visitor sees.
ReviewingReviewing