
Product
Introducing Supply Chain Attack Campaigns Tracking in the Socket Dashboard
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.
parse-files
Advanced tools
The most interesting project in the world > Verb
Complimentary lib to parser-cache. Extends the Parsers prototype with additional methods for reading files from the file system.
npm i parse-files --save-dev
var Parsers = require('parse-files');
var parsers = new Parsers();
Asynchronously read and parse a file at the given filepath and callback next(err, str).
filepath {String}: The file to parse.options {Object|Function}: or next function.next {Function}: Callback function.Example:
parsers.parseFile('docs/abc.md', function (err, file) {
console.log(file);
});
Synchronously read and parse a glob of files from the given patterns and callback next(err, str). Options are passed to globby and .parseFile().
glob {String}: Glob patterns to use for files to parse.options {Object|Function}: or next function.next {Function}: Callback function.Example:
parsers.parseFiles('docs/*.md', function (err, files) {
console.log(files);
});
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
Complimentary lib to parser-cache. Extends the `Parsers` prototype with additional methods for reading files from the file system.
The npm package parse-files receives a total of 108 weekly downloads. As such, parse-files popularity was classified as not popular.
We found that parse-files 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.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.

Security News
Node.js 25.4.0 makes require(esm) stable, formalizing CommonJS and ESM compatibility across supported Node versions.