Allows to load esm from any file formart can be seen as loader construction kit while offering precoded methods to do generic loader stuff in cross environment applications. It also can be seen as Pollyfill for importScript and dynamic import from url for NodeJS.
While its main Existence is to Load .stealify files in ESM Environments. Stealify files are compatible to ecmascript in general but they apply some conventions and opinions over it for example they can only export propertys that do return streams of already instantiated streams. So they are locked.
Stealify files get most comfortable created via .stealify referencing => .js files where .stealify files use only import export and as sayed only export instantiated streams. If you need to code highly complex functional streams you will use a framework like mostjs or rxjs where mostjs is highly prefered over rxjs or others most/core is the standard in functional stream patterns today.
You only got a limited subset of stuff to expect from them and get a common behavior cross platform you will work only with Streams that emit and apply data to targets. That makes it simple to guess around your Applications and what they are doing at the low level which gives you higher maintainablity and readablity out of the box as also many Security bestpratices directly applyed with zero overhead that is what we call code excelence.
Everything that you can learn from books like clean code and others are directly applyed out of the box at a fundamental level so you can do nothing wrong most of the time it is hard to do so.
breaking change is deprecating strToESM its successor is ESMLoader and moduleString
Host a local or remote server with scripts or use https://unpkg directly inside nodeJS via "esm-loader" The Steps to form a Module Instance with livebindings!
- Getting the Module Code
- Optional Transform it
- Construction Instantiation Evaluation via ESMLoader
String to ESModule Examples Cross Environment
import { SourceTextModule } from 'esm-loader/esm-loader.mjs'
const module = SourceTextModule('export const myModule = { yellow: \'snowflakes\'}')
.then(({ myModule })=>console.log(myModule.yellow)) // Logs: snowflakes
import { moduleString } from 'esm-loader/esm-loader.mjs'
const module = import(moduleString('export const myModule = { yellow: \'snowflakes\'}'))
.then(({ myModule })=>console.log(myModule.yellow)) // Logs: snowflakes
ESMLoader used inside NodeJS supports NodeJS Module Resolve but not relative resolve you can support it via a transformation step after loading your code you can simply replace any ./ ../ urls with correct resolved values relative to your current loaded module or the module loading path of the scipt you plan to instantiate and evaluate to ESM via ESMLoader.
ESMLoader ships with a example method to get code from a remote file via a isomorpic fetch This allows to use import with dynamic content.
// The exported fetch is cross environment Nodejs and Browser
import { SourceTextModule, fetchImport } from 'esm-loader/esm-loader.mjs'
// Creates a dynamic import from a string
// Returns a ESM Module with exports from string has resovle for Bare and Absolut Specifiers
// can easy be rewritten for your own extensions
fetchImport('url') //is a shortHand helper for fetch('https://url.to/your/js.mjs').then(SourceTextModule)
.then(mod=>console.log(mod))
CJS
const { readFile } = require('node:fs/promises')
//ESM-LOADER is ES so you need to use dynamic import
import('esm-loader/esm-loader.mjs') // NodeJS Resolve used here
.then(({ SourceTextModule }) => readFile('path/to/file.txt,ts,any').then(SourceTextModule)) // NodeJS Resolve used here
//no relativ urls can use transformations befor then(ESMLoader)
.then(myModule=>console.log(myModule)) //=> returns a real ESModule
import { SourceTextModule, fetchImport } from 'esm-loader/esm-loader.mjs'
// Creates a dynamic import from a string
// can easy be rewritten for your own extensions
fetch('https://url.to/your/js.mjs')
.then(SourceTextModule)
/**
* Returns a ESM Module with exports from string
* has resolve for Bare and Absolut Specifiers
* Your Can Easy rewrite the String that you get from
* fetch befor you use it as input to ESMLoader.
*/
.then(mod=>console.log(mod))
fetchImport('url') // shorthand for the above
Lets Import a mjs file from a source and rewrite it to resolve to the right locations if relativ specifiers are used
// TODO:
- https://github.com/guybedford/es-module-lexer used with webworkers is powerfull.
- can be used to build webworker integrations eg moduleString transformed for webworkers
- setup a proxy object based on the lexer result in main and run it with ESMLoader while hand of a transformed webworker version to new Worker()