# pcre-checker **Repository Path**: mirrors_creationix/pcre-checker ## Basic Information - **Project Name**: pcre-checker - **Description**: Node addon to check if a regexp will compile in libPCRE in JS mode - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-26 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README To test this, do `docker run -it --rm $(docker build . -q)` Then in that node.js shell, `require('./pcre-checker')` ```sh % docker run -it --rm $(docker build . -q) Welcome to Node.js v20.19.2. Type ".help" for more information. > require('./pcre-checker').checkSyntax("[") { isValid: false, error: 'missing terminating ] for character class', errorOffset: 1 } ```