
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
parser-cache
Advanced tools
Cache and load parsers, similiar to consolidate.js engines.
npm i parser-cache --save
var parsers = require('parser-cache');
options {Object}: Default options to use.var Parsers = require('parser-cache');
var parsers = new Parsers();
Register the given parser callback fn as ext. If ext is not given, the parser fn will be pushed into the default parser stack.
ext {String}fn {Function|Object}: or optionsreturns {Object} parsers: to enable chaining.// Default stack
parsers.register(require('parser-front-matter'));
// Associated with `.hbs` file extension
parsers.register('hbs', require('parser-front-matter'));
Return the parser stored by ext. If no ext is passed, the entire parsers is returned.
ext {String}: The parser to get.returns {Object}: The specified parser.parser.set('md', function() {});
parser.get('md')
// => [function]
Remove the parser stack for the given ext, or if no value is specified the entire parsers object is reset.
ext {String}: The stack to remove.Example:
parsers.reset()
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on August 27, 2014.
FAQs
Cache and load parsers, similiar to consolidate.js engines.
The npm package parser-cache receives a total of 95 weekly downloads. As such, parser-cache popularity was classified as not popular.
We found that parser-cache 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.