• Stars
    star
    446
  • Rank 97,888 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 3 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🀝 Common ECMAScript module utils

mlly

Missing ECMAScript module utils for Node.js

While ESM Modules are evolving in Node.js ecosystem, there are still many required features that are still experimental or missing or needed to support ESM. This package tries to fill in the gap.

Usage

Install npm package:

# using yarn
yarn add mlly

# using npm
npm install mlly

Note: Node.js 14+ is recommended.

Import utils:

// ESM
import {} from "mlly";

// CommonJS
const {} = require("mlly");

Resolving ESM modules

Several utilities to make ESM resolution easier:

  • Respecting ECMAScript Resolver algorithm
  • Exposed from Node.js implementation
  • Windows paths normalized
  • Supporting custom extensions and /index resolution
  • Supporting custom conditions
  • Support resolving from multiple paths or urls

resolve / resolveSync

Resolve a module by respecting ECMAScript Resolver algorithm (using wooorm/import-meta-resolve).

Additionally supports resolving without extension and /index similar to CommonJS.

import { resolve, resolveSync } from "mlly";

// file:///home/user/project/module.mjs
console.log(await resolve("./module.mjs", { url: import.meta.url }));

Resolve options:

  • url: URL or string to resolve from (default is pwd())
  • conditions: Array of conditions used for resolution algorithm (default is ['node', 'import'])
  • extensions: Array of additional extensions to check if import failed (default is ['.mjs', '.cjs', '.js', '.json'])

resolvePath / resolvePathSync

Similar to resolve but returns a path instead of URL using fileURLToPath.

import { resolvePath, resolveSync } from "mlly";

// /home/user/project/module.mjs
console.log(await resolvePath("./module.mjs", { url: import.meta.url }));

createResolve

Create a resolve function with defaults.

import { createResolve } from "mlly";

const _resolve = createResolve({ url: import.meta.url });

// file:///home/user/project/module.mjs
console.log(await _resolve("./module.mjs"));

Example: Ponyfill import.meta.resolve:

import { createResolve } from "mlly";

import.meta.resolve = createResolve({ url: import.meta.url });

resolveImports

Resolve all static and dynamic imports with relative paths to full resolved path.

import { resolveImports } from "mlly";

// import foo from 'file:///home/user/project/bar.mjs'
console.log(
  await resolveImports(`import foo from './bar.mjs'`, { url: import.meta.url })
);

Syntax Analyzes

isValidNodeImport

Using various syntax detection and heuristics, this method can determine if import is a valid import or not to be imported using dynamic import() before hitting an error!

When result is false, we usually need a to create a CommonJS require context or add specific rules to the bundler to transform dependency.

import { isValidNodeImport } from "mlly";

// If returns true, we are safe to use `import('some-lib')`
await isValidNodeImport("some-lib", {});

Algorithm:

  • Check import protocol - If is data: return true (βœ… valid) - If is not node:, file: or data:, return false ( ❌ invalid)
  • Resolve full path of import using Node.js Resolution algorithm
  • Check full path extension
    • If is .mjs, .cjs, .node or .wasm, return true (βœ… valid)
    • If is not .js, return false (❌ invalid)
    • If is matching known mixed syntax (.esm.js, .es.js, etc) return false ( ❌ invalid)
  • Read closest package.json file to resolve path
  • If type: 'module' field is set, return true (βœ… valid)
  • Read source code of resolved path
  • Try to detect CommonJS syntax usage
    • If yes, return true (βœ… valid)
  • Try to detect ESM syntax usage
    • if yes, return false ( ❌ invalid)

Notes:

  • There might be still edge cases algorithm cannot cover. It is designed with best-efforts.
  • This method also allows using dynamic import of CommonJS libraries considering Node.js has Interoperability with CommonJS.

hasESMSyntax

Detect if code, has usage of ESM syntax (Static import, ESM export and import.meta usage)

import { hasESMSyntax } from "mlly";

hasESMSyntax("export default foo = 123"); // true

hasCJSSyntax

Detect if code, has usage of CommonJS syntax (exports, module.exports, require and global usage)

import { hasCJSSyntax } from "mlly";

hasCJSSyntax("export default foo = 123"); // false

detectSyntax

Tests code against both CJS and ESM.

isMixed indicates if both are detected! This is a common case with legacy packages exporting semi-compatible ESM syntax meant to be used by bundlers.

import { detectSyntax } from "mlly";

// { hasESM: true, hasCJS: true, isMixed: true }
detectSyntax('export default require("lodash")');

CommonJS Context

createCommonJS

This utility creates a compatible CommonJS context that is missing in ECMAScript modules.

import { createCommonJS } from "mlly";

const { __dirname, __filename, require } = createCommonJS(import.meta.url);

Note: require and require.resolve implementation are lazy functions. createRequire will be called on first usage.

Import/Export Analyzes

Tools to quickly analyze ESM syntax and extract static import/export

  • Super fast Regex based implementation
  • Handle most edge cases
  • Find all static ESM imports
  • Find all dynamic ESM imports
  • Parse static import statement
  • Find all named, declared and default exports

findStaticImports

Find all static ESM imports.

Example:

import { findStaticImports } from "mlly";

console.log(
  findStaticImports(`
// Empty line
import foo, { bar /* foo */ } from 'baz'
`)
);

Outputs:

[
  {
    type: "static",
    imports: "foo, { bar /* foo */ } ",
    specifier: "baz",
    code: "import foo, { bar /* foo */ } from 'baz'",
    start: 15,
    end: 55,
  },
];

parseStaticImport

Parse a dynamic ESM import statement previously matched by findStaticImports.

Example:

import { findStaticImports, parseStaticImport } from "mlly";

const [match0] = findStaticImports(`import baz, { x, y as z } from 'baz'`);
console.log(parseStaticImport(match0));

Outputs:

{
  type: 'static',
  imports: 'baz, { x, y as z } ',
  specifier: 'baz',
  code: "import baz, { x, y as z } from 'baz'",
  start: 0,
  end: 36,
  defaultImport: 'baz',
  namespacedImport: undefined,
  namedImports: { x: 'x', y: 'z' }
}

findDynamicImports

Find all dynamic ESM imports.

Example:

import { findDynamicImports } from "mlly";

console.log(
  findDynamicImports(`
const foo = await import('bar')
`)
);

findExports

import { findExports } from "mlly";

console.log(
  findExports(`
export const foo = 'bar'
export { bar, baz }
export default something
`)
);

Outputs:

[
  {
    type: "declaration",
    declaration: "const",
    name: "foo",
    code: "export const foo",
    start: 1,
    end: 17,
  },
  {
    type: "named",
    exports: " bar, baz ",
    code: "export { bar, baz }",
    start: 26,
    end: 45,
    names: ["bar", "baz"],
  },
  { type: "default", code: "export default ", start: 46, end: 61 },
];

findExportNames

Same as findExports but returns array of export names.

import { findExportNames } from "mlly";

// [ "foo", "bar", "baz", "default" ]
console.log(
  findExportNames(`
export const foo = 'bar'
export { bar, baz }
export default something
`)
);

resolveModuleExportNames

Resolves module and reads its contents to extract possible export names using static analyzes.

import { resolveModuleExportNames } from "mlly";

// ["basename", "dirname", ... ]
console.log(await resolveModuleExportNames("pathe"));

Evaluating Modules

Set of utilities to evaluate ESM modules using data: imports

  • Automatic import rewrite to resolved path using static analyzes
  • Allow bypass ESM Cache
  • Stack-trace support
  • .json loader

evalModule

Transform and evaluates module code using dynamic imports.

import { evalModule } from "mlly";

await evalModule(`console.log("Hello World!")`);

await evalModule(
  `
  import { reverse } from './utils.mjs'
  console.log(reverse('!emosewa si sj'))
`,
  { url: import.meta.url }
);

Options:

  • all resolve options
  • url: File URL

loadModule

Dynamically loads a module by evaluating source code.

import { loadModule } from "mlly";

await loadModule("./hello.mjs", { url: import.meta.url });

Options are same as evalModule.

transformModule

  • Resolves all relative imports will be resolved
  • All usages of import.meta.url will be replaced with url or from option
import { transformModule } from "mlly";
console.log(transformModule(`console.log(import.meta.url)`), {
  url: "test.mjs",
});

Options are same as evalModule.

Other Utils

fileURLToPath

Similar to url.fileURLToPath but also converts windows backslash \ to unix slash / and handles if input is already a path.

import { fileURLToPath } from "mlly";

// /foo/bar.js
console.log(fileURLToPath("file:///foo/bar.js"));

// C:/path
console.log(fileURLToPath("file:///C:/path/"));

normalizeid

Ensures id has either of node:, data:, http:, https: or file: protocols.

import { ensureProtocol } from "mlly";

// file:///foo/bar.js
console.log(normalizeid("/foo/bar.js"));

loadURL

Read source contents of a URL. (currently only file protocol supported)

import { resolve, loadURL } from "mlly";

const url = await resolve("./index.mjs", { url: import.meta.url });
console.log(await loadURL(url));

toDataURL

Convert code to data: URL using base64 encoding.

import { toDataURL } from "mlly";

console.log(
  toDataURL(`
  // This is an example
  console.log('Hello world')
`)
);

interopDefault

Return the default export of a module at the top-level, alongside any other named exports.

// Assuming the shape { default: { foo: 'bar' }, baz: 'qux' }
import myModule from "my-module";

// Returns { foo: 'bar', baz: 'qux' }
console.log(interopDefault(myModule));

sanitizeURIComponent

Replace reserved characters from a segment of URI to make it compatible with rfc2396.

import { sanitizeURIComponent } from "mlly";

// foo_bar
console.log(sanitizeURIComponent(`foo:bar`));

sanitizeFilePath

Sanitize each path of a file name or path with sanitizeURIComponent for URI compatibility.

import { sanitizeFilePath } from "mlly";

// C:/te_st/_...slug_.jsx'
console.log(sanitizeFilePath("C:\\te#st\\[...slug].jsx"));

parseNodeModulePath

Parses an absolute file path in node_modules to three segments:

  • dir: Path to main directory of package
  • name: Package name
  • subpath: The optional package subpath

It returns an empty object (with partial keys) if parsing fails.

import { parseNodeModulePath } from "mlly";

// dir: "/src/a/node_modules/"
// name: "lib"
// subpath: "./dist/index.mjs"
const { dir, name, subpath } = parseNodeModulePath(
  "/src/a/node_modules/lib/dist/index.mjs"
);

lookupNodeModuleSubpath

Parses an absolute file path in node_modules and tries to reverse lookup (or guess) the original package exports subpath for it.

import { lookupNodeModuleSubpath } from "mlly";

// subpath: "./utils"
const subpath = lookupNodeModuleSubpath(
  "/src/a/node_modules/lib/dist/utils.mjs"
);

License

MIT - Made with ❀️

More Repositories

1

nitro

Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.
TypeScript
5,939
star
2

consola

🐨 Elegant Console Logger for Node.js and Browser
TypeScript
5,919
star
3

ofetch

😱 A better fetch API. Works on node, browser and workers.
TypeScript
3,876
star
4

magic-regexp

A compiled-away, type-safe, readable RegExp alternative
TypeScript
3,685
star
5

h3

⚑️ Minimal H(TTP) framework built for high performance and portability
TypeScript
3,433
star
6

unplugin

Unified plugin system for Vite, Rollup, Webpack, esbuild, Rolldown, and more
TypeScript
3,018
star
7

unbuild

πŸ“¦ A unified JavaScript build system
TypeScript
2,270
star
8

magicast

πŸ§€ Programmatically modify JavaScript and TypeScript source codes with a simplified, elegant and familiar syntax powered by recast and babel.
TypeScript
2,270
star
9

webpackbar

Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
TypeScript
2,056
star
10

unstorage

πŸ’Ύ Unstorage provides an async Key-Value storage API with conventional features like multi driver mounting, watching and working with metadata, dozens of built-in drivers and a tiny core.
TypeScript
1,707
star
11

jiti

Runtime Typescript and ESM support for Node.js
TypeScript
1,573
star
12

ipx

πŸ–ΌοΈ High performance, secure and easy-to-use image optimizer.
TypeScript
1,491
star
13

fontaine

Automatic font fallback based on font metrics
TypeScript
1,478
star
14

destr

πŸš€ Faster, secure and convenient alternative for JSON.parse for artibrary inputs
TypeScript
1,058
star
15

ufo

πŸ”— URL utils for humans
TypeScript
1,002
star
16

defu

🌊 Assign default properties recursively
TypeScript
992
star
17

untun

πŸš‡ Tunnel your local HTTP(s) server to the world! powered by Cloudflare Quick Tunnels.
TypeScript
969
star
18

changelogen

πŸ’… Beautiful Changelogs using Conventional Commits
TypeScript
877
star
19

citty

πŸŒ† Elegant CLI Builder
TypeScript
729
star
20

hookable

πŸͺ Awaitable Hooks
TypeScript
693
star
21

unhead

Unhead is the any-framework document head manager built for performance and delightful developer experience.
TypeScript
618
star
22

ohash

Super fast hashing library based on murmurhash3 written in Vanilla JS
JavaScript
526
star
23

uqr

Generate QR Code universally, in any runtime, to ANSI, Unicode or SVG.
TypeScript
523
star
24

unimport

Unified utils for auto importing APIs in modules.
TypeScript
498
star
25

c12

βš™οΈ Smart Configuration Loader
TypeScript
474
star
26

nypm

🌈 Unified Package Manager for Node.js and Bun
TypeScript
455
star
27

ungh

πŸ™ Unlimited access to github API
TypeScript
453
star
28

std-env

Runtime Agnostic JS utils
TypeScript
447
star
29

giget

✨ Download templates and git repositories with pleasure!
TypeScript
439
star
30

rou3

🌳 Lightweight and fast rou(ter) for JavaScript
TypeScript
432
star
31

listhen

πŸ‘‚ Elegant HTTP Listener
TypeScript
423
star
32

untyped

Generate types and markdown from a config object.
TypeScript
419
star
33

unctx

🍦 Composables in vanilla JS
TypeScript
396
star
34

pathe

πŸ›£οΈ Drop-in replacement of the Node.js's path module module that ensures paths are normalized
TypeScript
396
star
35

unpdf

πŸ“„ Utilities to work with PDFs in Node.js, browser and workers
TypeScript
395
star
36

unenv

πŸ•ŠοΈ Convert javaScript code to be runtime agnostic
TypeScript
358
star
37

mkdist

Lightweight file-to-file transpiler.
TypeScript
342
star
38

scule

🧡 String Case Utils
TypeScript
342
star
39

crossws

πŸ”Œ Cross-platform WebSocket Servers for Node.js, Deno, Bun and Cloudflare Workers.
TypeScript
299
star
40

rc9

Read/Write config couldn't be easier!
TypeScript
271
star
41

knitwork

🧢 Utilities to generate safe JavaScript code.
TypeScript
264
star
42

get-port-please

πŸ”Œ Get an available open port
TypeScript
243
star
43

runtime-compat

Display APIs compatibility across different JavaScript runtimes
Vue
230
star
44

theme-colors

🎨 Easily generate color shades for themes
TypeScript
213
star
45

perfect-debounce

Debounce promise-returning & async functions.
TypeScript
210
star
46

pkg-types

Node.js utilities and TypeScript definitions for package.json and tsconfig.json
TypeScript
206
star
47

lmify

πŸ€™ Install NPM dependencies programmatically (please switch to unjs/nypm)
JavaScript
200
star
48

uncrypto

Single API for Web Crypto API and Crypto Subtle working in Node.js, Browsers and other runtimes
TypeScript
184
star
49

undio

⇔ Conventionally and Safely convert between various JavaScript data types
TypeScript
184
star
50

httpxy

πŸ”€ A Full-Featured HTTP and WebSocket Proxy for Node.js
TypeScript
179
star
51

unwasm

πŸ‡Ό WebAssembly tools for JavaScript
JavaScript
176
star
52

unkit

πŸ“™ UnJS standard library
TypeScript
174
star
53

undocs

Minimal Documentation theme and CLI for shared usage across UnJS projects.
Vue
161
star
54

automd

πŸ€– Automated markdown maintainer
TypeScript
161
star
55

db0

πŸ“š Lightweight SQL Connector
TypeScript
160
star
56

node-fetch-native

better fetch for Node.js. Works on any JavaScript runtime!
TypeScript
154
star
57

template

πŸ“‹ UnJS Project Starter Template
TypeScript
152
star
58

serve-placeholder

β™‘ Smart placeholder for missing assets
TypeScript
149
star
59

cookie-es

πŸͺ Cookie and Set-Cookie parser and serializer
TypeScript
132
star
60

website

UnJS website Content and Design!
Vue
129
star
61

mongoz

πŸ₯­ Zero Config MongoDB Server
TypeScript
108
star
62

jimp-compact

✏️ Lightweight version of Jimp -- An image processing library written entirely in JavaScript for Node.js
TypeScript
106
star
63

confbox

Compact and high quality YAML, TOML, JSONC and JSON5 parsers
TypeScript
102
star
64

nanotar

πŸ“Ό Tiny and fast tar utils for any JavaScript runtime!
TypeScript
100
star
65

redirect-ssl

Connect/Express middleware to enforce https using is-https
TypeScript
100
star
66

mdbox

⬇ Just simple markdown utils
JavaScript
79
star
67

image-meta

Detect image type and size using pure javascript.
TypeScript
78
star
68

errx

Zero dependency library to capture and parse stack traces in Node, Bun, Deno and more.
TypeScript
78
star
69

compatx

🌴 Compatibility toolkit.
TypeScript
56
star
70

items-promise

Bare minimum async methods using promises
JavaScript
55
star
71

nitro-deploys

Continues Nitro deployments for end-to-end testing deployment providers.
TypeScript
49
star
72

unrouting

Making filesystem routing universal
TypeScript
45
star
73

ezpass

Dead simple password protection middleware
TypeScript
37
star
74

eslint-config

βœ… Shared ESLint config for unjs repositories
TypeScript
36
star
75

workbox-cdn

Workbox Unofficial CDN and standalone NPM package.
Shell
32
star
76

externality

TypeScript
31
star
77

create-require

Polyfill for Node.js module.createRequire (<= v12.2.0)
JavaScript
31
star
78

codeup

Automated codebase updater [POC]
TypeScript
30
star
79

is-https

Check if the given request is HTTPS
TypeScript
29
star
80

impound

TypeScript
29
star
81

rollup-plugin-node-deno

Convert NodeJS to Deno compatible code with rollup
TypeScript
29
star
82

requrl

Grab full URL from request.
TypeScript
28
star
83

fs-memo

Easy persisted memo object for Node.js
TypeScript
26
star
84

bundle-runner

Run webpack bundles in Node.js with optional VM sandboxing
TypeScript
25
star
85

community

UnJS Community Notes
22
star
86

renovate-config

16
star
87

nitro-preset-starter

TypeScript
16
star
88

glob-native

TypeScript
16
star
89

nitro-starter

Nitro starter template
TypeScript
16
star
90

governance

UnJS Governance Notes
15
star
91

.github

Community Health Files
8
star
92

unjs.github.io

HTML
5
star
93

html-validate-es

TypeScript
4
star