@make-mjs/url
v0.2.8
Published
Manipulate MJS module url
Downloads
34
Readme
@make-mjs/url
Manipulate MJS module URL
APIs Documentation
Go to the GitHub page
Examples
Internal Modules
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:
- If
./foo/bar/baz
points to a directory without apackage.json
,mjsPath
would be./foo/bar/baz/index.mjs
. - If
./foo/bar/baz
does not point to a directory,mjsPath
would be./foo/bar/baz.mjs
. - For other cases, read the tests.
External Modules
import getMjsUrl from '@make-mjs/url'
const mjsPath: string = await getMjsUrl({
modulePath: 'foo/bar/baz',
moduleContainer: [
'node_modules'
],
/* ...and more options... */
})
Result:
- If
node_modules/foo/bar/baz
points to a directory without apackage.json
,mjsPath
would befoo/bar/baz/index.mjs
. - If
node_modules/foo/bar/baz
points to a directory that contains apackage.json
that have"module"
points tomodule.mjs
,mjsPath
would befoo/bar/baz/module.mjs
. - If
node_modules/foo/baz.js
points to a file,mjsPath
would befoo/bar/baz.mjs
. - For other cases, read the tests.