5.0.0 • Published 1 month ago

oxc-resolver v5.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Oxc Resolver Napi Binding

See

  • index.d.ts for resolveSync and ResolverFactory API.
  • README.md for options.

API

resolve(directory, specifier) - resolve specifier at an absolute path to a directory.

directory

An absolute path to a directory where the specifier is resolved against.

For CommonJS modules, it is the __dirname variable that contains the absolute path to the folder containing current module.

For ECMAScript modules, it is the value of import.meta.url.

Behavior is undefined when given a path to a file.

specifier

The string passed to require or import, i.e. require("specifier") or import "specifier"

ESM Example

import assert from 'assert';
import path from 'path';
import resolve, { ResolverFactory } from './index.js';

// `resolve`
assert(resolve.sync(process.cwd(), './index.js').path, path.join(cwd, 'index.js'));

// `ResolverFactory`
const resolver = new ResolverFactory();
assert(resolver.sync(process.cwd(), './index.js').path, path.join(cwd, 'index.js'));
5.0.0

1 month ago

2.1.1

5 months ago

2.1.0

5 months ago

2.0.1

5 months ago

3.0.3

4 months ago

3.0.2

4 months ago

3.0.1

4 months ago

3.0.0

4 months ago

4.1.0

2 months ago

4.0.0

3 months ago

4.2.0

2 months ago

2.0.0

6 months ago

1.12.0

7 months ago

1.11.0

8 months ago

1.10.2

9 months ago

1.9.1

10 months ago

1.8.2

10 months ago

1.9.0

10 months ago

1.8.1

11 months ago

1.9.4

9 months ago

1.9.3

10 months ago

1.8.4

10 months ago

1.9.2

10 months ago

1.8.3

10 months ago

1.10.1

9 months ago

1.10.0

9 months ago

1.7.0

12 months ago

1.6.7

12 months ago

1.6.6

12 months ago

1.6.5

1 year ago

1.6.4

1 year ago

1.6.3

1 year ago

1.6.2

1 year ago

1.6.1

1 year ago

1.6.0

1 year ago

1.5.4

1 year ago

0.3.0

1 year ago

0.2.0

1 year ago

0.1.1

1 year ago

0.0.3

1 year ago

0.0.1

1 year ago