Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

node-loader/node-loader-import-maps

Repository files navigation

@node-loader/import-maps

A nodejs loader for import maps. This allows you to customize module resolution by creating a node.importmap file.

Installation

npm install --save @node-loader/import-maps

# Or, if you prefer Yarn
yarn add --save @node-loader/import-maps

Usage

Create a file node.importmap in the current working directory:

{
  "imports": {
    "my-module": "file:///Users/name/code/my-module.js"
  }
}

Now create a file that imports the mapped module:

import "my-module";

Now run node with the --experimental-loader flag:

node --experimental-loader @node-loader/import-maps file.js

Configuration

By default, node-loader import maps looks for a configuration file called node.importmap in the current working directory. To specify the file path to the configuration file, provide the IMPORT_MAP_PATH environment variable:

IMPORT_MAP_PATH=/Users/name/some/dir/node.importmap node --experimental-loader @node-loader/import-maps file.js

Composition

If you wish to combine import maps with other NodeJS loaders, you may do so by using node-loader-core.

About

A nodejs loader for import maps

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
Morty Proxy This is a proxified and sanitized view of the page, visit original site.