NGINX Modern Apps > Class 3 - NGINX Dataplane Scripting Source | Edit on
Converting response body characters to lower case [http/response/to_lower_case]¶
NGINX Javascript now provides a js_body_filter directive to modify the response body before returning it to the client. In this example, we just convert the body text to lower case.
Step 1: Use the following commands to start your NGINX container with this lab’s files:
Step 2: Now let’s use curl to test our NGINX server:
Code Snippets¶
This config proxies requests to a simple upstream on port 8080. Responses are passed through the main.to_lower_case method before being returned to the client.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
This njs code takes the “data” returned by the upstream server and uses the .toLowerCase() method to convert it to lower case. It then constructs a new response using r.sendBuffer() that is sent to the client instead.