
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
sloppy-module-parser
Advanced tools
Parse imports/exports/requires with a focus on speed over 100% correctness
Parse imports/exports/requires with a focus on speed over 100% correctness
npm install sloppy-module-parser
Sometimes it might report requires that are indeed not requires but tries to not miss any. This limitation gives it a massive speed boost compared to other parsers.
const { init, parse } = require('sloppy-module-parser')
await init() // needed to init the async esm parser used
console.log(parse(src))
async parser.init()Init the async esm parser. Call this before using the module.
const res = parser.parse(src, type = 'module', strictMode = true)Parses imports/requires from the source. type helps it understand what it should parse for.
Type should be one of the following: module / script / json.
If strict mode is false, and type is not module, it autodetects if any import / export statements
are used and if so auto corrects the type. This is useful for module interop.
The returned result looks like this
{
type: 'module',
resolutions: [
{
isImport: boolean, // is it an import or a require
isAddon: boolean, // is this import / require pointing to a native addon
position: [statementStart, inputStart, inputEnd], // where is the statement, might be null
input: string, // the input to import / require, `null` is if it is unknown at parse time
output: null // what it should resolve to, just set for conveinience
},
...
],
namedImports: [
{
isWildcard: boolean, // is it a wildcard import
isExport: boolean, // reexports the import
names: [string, ...], // the named imports,
from: referenceToRelevantResolution
}
],
exports: [string, ...] // only default populated for esm
}
const exports = parser.exports(src, type)Get the exports from a module. Type is the same as in parse.
Apache-2.0
FAQs
Parse imports/exports/requires with a focus on speed over 100% correctness
The npm package sloppy-module-parser receives a total of 2,682 weekly downloads. As such, sloppy-module-parser popularity was classified as popular.
We found that sloppy-module-parser demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.