
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Parser for Salesforce Visualforce pages. This is based on an ANTLR4 grammar (see antlr/VFParser.g4 & VFLexer.g4) using antlr4ts to generate a parser/lexer in Typescript.
This module just contains the Parser & Lexer and provides no further support for analysing the generated parse trees beyond what is provided by antlr4ts. See pkgforce for example code on how this may be used.
You can find some minimal examples in the src/_test_ directory.
To parse a page file:
let lexer = new VFLexer(CharStreams.fromString("<apex:page/>"));
let tokens = new CommonTokenStream(lexer);
let parser = new VFParser(tokens);
let context = parser.vfUnit();
The 'context' is a VfUnitContext object which is the root of the parsed representation of the page. You can access the parse tree via functions on it.
If you change the Parser or Lexer grammar files you will need to update the parser with
npm run antlr4ts
1.0.1 - Added TS declarations
1.0.0 - Initial version
All the source code included uses a 3-clause BSD license.
FAQs
Javascript parser for Salesforce Page Markup Language
We found that vf-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.