
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
@make-mjs/url
Advanced tools
Manipulate MJS module URL
Go to the GitHub page
import getMjsUrl from '@make-mjs/url'
const mjsPath: string = await getMjsUrl({
modulePath: './foo/bar/baz', // leading '.' or '..' is required to be recognized as internal
/* ...and more options... */
})
Result:
./foo/bar/baz points to a directory without a package.json, mjsPath would be ./foo/bar/baz/index.mjs../foo/bar/baz does not point to a directory, mjsPath would be ./foo/bar/baz.mjs.import getMjsUrl from '@make-mjs/url'
const mjsPath: string = await getMjsUrl({
modulePath: 'foo/bar/baz',
moduleContainer: [
'node_modules'
],
/* ...and more options... */
})
Result:
node_modules/foo/bar/baz points to a directory without a package.json, mjsPath would be foo/bar/baz/index.mjs.node_modules/foo/bar/baz points to a directory that contains a package.json that have "module" points to module.mjs, mjsPath would be foo/bar/baz/module.mjs.node_modules/foo/baz.js points to a file, mjsPath would be foo/bar/baz.mjs.FAQs
Manipulate MJS module url
The npm package @make-mjs/url receives a total of 18 weekly downloads. As such, @make-mjs/url popularity was classified as not popular.
We found that @make-mjs/url 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
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.