Socket
Book a DemoInstallSign in
Socket

make-import-map

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

make-import-map

Generate and serve import maps

latest
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

Make import maps

Import maps allow a browser to know where to load ES modules from. Bundler not required.

See [https://github.com/WICG/import-maps]

Example usage:

Create an HTML file, for example:

<html>
<head>
  <!--#importmap-->
</head>
<body>
  <script type="module">
    import which from "which-export";
    document.body.append(which);
  </script>
</body>
</html>

Run a development server (either by installing this package globally or create an npm script). The path to serve should include all required node_modules directories and source files:

make-import-map serve .

The comment in HTML will be replaced by an import map. If which-export is a dependency in package.json and is installed then the import will load it from node_modules.

Build an import map for distribution:

make-import-map save . import-map.json

FAQs

Package last updated on 18 Feb 2023

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