GitXplorerGitXplorer
z

esm-x

public
1 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
bd71e6e67cc7381c64557b428ffdd0ef49e68ebe

chore(release): increment patch version [skip ci]

ggithub-actions[bot] committed 9 months ago
Unverified
7d99eb391907d71d63a2a501be5450f8996ef973

Updated docs

zzachsa committed 9 months ago
Unverified
a7099a6095518224f0939dac45d0cd9ae86501fd

Updated docs

zzachsa committed 9 months ago
Unverified
8cbe7abef3ae697d6a0205d877dc893e411537fc

Merge branch 'main' of github-zachsa:zachsa/esm-x

zzachsa committed 9 months ago
Unverified
e1662649a676d28818e0756e810a183bc13219b2

Fixed orphaned loading element problem. Resolved #2

zzachsa committed 9 months ago
Unverified
89737399d10a824f519b0fff2d1964316df2eda2

chore(release): increment patch version [skip ci]

ggithub-actions[bot] committed 9 months ago

README

The README file for this repository.

esm-x

Enhance browser-JavaScript support to include JSX/Typescript syntax for websites utilizing importmaps.

Motivation

With all major browsers now supporting importmaps, bundle-free web development workflows have become both feasible and incredibly convenient. This project seeks to bring that convenience to React/Typescript projects.

How it works

Leverages importmaps in conjunction with the ES Module Shim library. With shimMode forced to true, all Source Code from the website origin is transpiled using Babel, while prior-optimized imports originating from a module CDN (such as the excellent JSPM CDN) are loaded directly.

Usage

Include the esm-x library (328kB gzipped) as the first script in your HTML file, and include at least one <script type="esm-x">...</script>. Scripts of type="esm-x" will be transpiled and executed in the order they are included in the HTML page.

Here is an example of a simple React application with the react and react-dom library imports defined via an importmap. Copy this file into index.html, and serve via a web server (i.e. npx http-server -c-1). There is an example of an @mui/material app in the test directory of this repository.

esm-x works without an importmap, but ES Module Shims is required.

<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>ESM-X Example</title>

    <!-- Include ESM-X here -->
    <script
      id="esm-x"
      compiler="babel"
      loading="circular"
      src="https://www.unpkg.com/@zachsa/esm-x@1.0.32/dist/index.js"
    ></script>

    <!-- https://generator.jspm.io/#U2NhYGBiDs0rySzJSU1hKEpNTC7RTcnPdTC00DPSM9BPzslMzSuBiEPFAIy0jtgzAA -->
    <script type="importmap">
      {
        "imports": {
          "react": "https://ga.jspm.io/npm:react@18.2.0/index.js",
          "react-dom/client": "https://ga.jspm.io/npm:react-dom@18.2.0/client.js"
        },
        "scopes": {
          "https://ga.jspm.io/": {
            "react-dom": "https://ga.jspm.io/npm:react-dom@18.2.0/index.js",
            "scheduler": "https://ga.jspm.io/npm:scheduler@0.23.0/index.js"
          }
        }
      }
    </script>

    <!-- ES Module Shims -->
    <script
      async
      src="https://ga.jspm.io/npm:es-module-shims@1.9.0/dist/es-module-shims.js"
      crossorigin="anonymous"
    ></script>

    <!-- ESM-X script -->
    <script type="esm-x">
      import React, { FC } from 'react';
      import { createRoot } from 'react-dom/client';
      const root = createRoot(document.getElementById('root') as HTMLElement);

      const App: FC = () => <div>Hello from ESM-X</div>;
      root.render(<App />);
    </script>
  </head>
  <body>
    <div id="root"></div>
  </body>
</html>

Options

Configure the ESM-X script by including HTML tag id and other attributes:

<script id="esm-x" loading="circular|linear|disabled" compiler="babel|esbuild" src="..."></script>

Importmaps

Head to the JSPM generator to quickly generate an importmap. Any importmap configuration should be supported - huge importmaps are fine, make sure to take advantage of dynamic imports / code splitting (for example, Suspense/lazy when using React), etc. (and obviously don't preload scripts)

External importmaps

To use an external importmap, make sure that your importmap tag is of type "importmap-shim", and that the src url endsWith('importmap') || endsWith('importmap.json'). For example:

<script type="importmap-shim" src="path/to/file/called/importmap.json"></script>

It's easy to work with external importmaps using the jspm CLI.

Local development

Start a local web server and navigate to localhost:3000/test:

npx @mnemosyne/server -v ./
chomp --watch

Publish

npm publish --access public

Install