🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@make-mjs/url

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@make-mjs/url

Manipulate MJS module url

Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
33
65%
Maintainers
1
Weekly downloads
 
Created
Source

@make-mjs/url

Manipulate MJS module URL

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 a package.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 a package.json, mjsPath would be foo/bar/baz/index.mjs.
  • If 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.
  • If node_modules/foo/baz.js points to a file, mjsPath would be foo/bar/baz.mjs.
  • For other cases, read the tests.

License

MIT © Hoàng Văn Khải

Keywords

es-module

FAQs

Package last updated on 25 Sep 2019

Did you know?

Socket

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.

Install

Related posts