From xeioex at nginx.com Tue Jan 14 22:42:40 2025 From: xeioex at nginx.com (Dmitry Volyntsev) Date: Tue, 14 Jan 2025 14:42:40 -0800 Subject: [nginx-announce] njs-0.8.9 Message-ID: <431b8dce-757c-44c5-92c9-5ab62987ea86@nginx.com> Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). This release introduced file system module for QuickJS engine. Learn more about njs: - Overview and introduction:       https://nginx.org/en/docs/njs/ - NGINX JavaScript in Your Web Server Configuration:       https://youtu.be/Jc_L6UffFOs - Extending NGINX with Custom Code:       https://youtu.be/0CVhq4AUU7M - Using node modules with njs:       https://nginx.org/en/docs/njs/node_modules.html - Writing njs code using TypeScript definition files:       https://nginx.org/en/docs/njs/typescript.html Feel free to try it and give us feedback on: - Github:       https://github.com/nginx/njs/issues Additional examples and howtos can be found here: - Github:       https://github.com/nginx/njs-examples Changes with njs 0.8.9                                       14 Jan 2025     nginx modules:     *) Bugfix: removed extra VM creation per server.        Previously, when js_import was declared in http or stream blocks,        an extra copy of the VM instance was created for each server        block. This was not needed and consumed a lot of memory for        configurations with many server blocks.       This issue was introduced in 9b674412 (0.8.6) and was partially       fixed for location blocks only in 685b64f0 (0.8.7).     Core:     *) Feature: added fs module for QuickJS engine.