# jsxgettext-recursive **Repository Path**: mirrors_mozilla/jsxgettext-recursive ## Basic Information - **Project Name**: jsxgettext-recursive - **Description**: INACTIVE - http://mzl.la/ghe-archive - Recursively extract strings for localization. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-22 - **Last Updated**: 2026-03-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jsxgettext-recursive Recursively search and extract gettext strings. ## Install npm install jsxgettext-recursive ## Example ``` var extract = require('jsxgettext-recursive'); var walker = extract({ 'input-dir': './app/scripts', outputDir: './locales', output: 'client.pot', exclude: /dist/, joinExisting: false, keyword: 't', parsers: { '.js': 'javascript', '.mustache': 'handlebars' } }); walker.on('end', function() { console.log('done!'); }); ``` Possible parsers include: `javascript`, `handlebars`, `jade`, `ejs`, `jinja`.