
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
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,370 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.