esm.sh icon indicating copy to clipboard operation
esm.sh copied to clipboard

A fast, smart, & global CDN for modern(es2015+) web development.

Results 237 esm.sh issues
Sort by recently updated
recently updated
newest added

## Failing module - **GitHub**: https://github.com/alangpierce/sucrase - **npm**: https://www.npmjs.com/package/sucrase ```js import { transform } from "https://esm.sh/[email protected]"; // This throws (esm.sh v59-v66) transform("test();", { transforms: [] }); ``` This used to...

deno

### Roadmap List - [ ] use cloudflare worker as front layer - [ ] preload deps - [ ] transform jsx/ts/tsx/vue/svelte for browsers from **github** ```js import "https://build.esm.sh/github.com/ije/ui/Button.tsx" //...

## Failing module - **GitHub**: https://github.com/firebase/firebase-admin-node - **npm**: https://www.npmjs.com/package/firebase-admin ```js import { getDatabase } from "https://esm.sh/[email protected]/database"; ``` ## Error message After running `deno run` I got this: ``` error: Import...

deno

## Failing module - **GitHub**: https://github.com/lodash/lodash - **npm**: https://www.npmjs.com/package/lodash-es ```js import { debounce } from "https://esm.sh/[email protected]"; ``` ## Error message After running `deno run` I got this: https://gist.github.com/jeiea/f0d2e176536ee64ce14af4b687e18af5 ## Additional...

types
deno

## Failing module - **GitHub**: https://github.com/FortAwesome/react-fontawesome - **npm**: https://www.npmjs.com/package/@fortawesome/react-fontawesome ```js import { FontAwesomeIcon } from 'https://esm.sh/@fortawesome/[email protected]' ``` ## Error message After running `deno run` I get this: ``` /* your...

bug
types

It seems that the bundle query like`https://esm.sh/[email protected]?bundle` doesn't bundle the entry ```js /* esm.sh - [email protected] */ export * from "https://cdn.esm.sh/v64/[email protected]/es2021/react.bundle.js"; export { default } from "https://cdn.esm.sh/v64/[email protected]/es2021/react.bundle.js"; ``` I would...

browser

## Failing module - **GitHub**: https://github.com/uuidjs/uuid - **npm**: https://www.npmjs.com/package/uuid ```js import { v4 as uuid } from 'https://esm.sh/uuid' ``` ## Error message After running `deno bunlde` I get this: ```...

bug

Consider the following page: ```html import React from 'https://esm.sh/[email protected]?dev'; import ReactDOM from 'https://esm.sh/[email protected]?dev'; import TextField from 'https://esm.sh/@material-ui/[email protected]/[email protected],[email protected]&dev'; import Button from 'https://esm.sh/@material-ui/[email protected]/[email protected],[email protected]&dev'; const e = React.createElement; ReactDOM.render( // e(Button, {variant: 'contained',...

## Failing module - **GitHub**: https://github.com/emn178/js-sha256 - **npm**: [[email protected]](https://www.npmjs.com/package/js-sha256) ```js import { sha256 } from "https://esm.sh/[email protected]?dev&no-check&target=deno" ``` ## Error message After running `deno run` I got this: ``` error: Uncaught...

deno

Seems like dts files are not correctly transformed. ```ts import tsvfs from "https://esm.sh/@typescript/vfs" console.log(tsvfs); ``` ```sh error: TS2694 [ERROR]: Namespace '"https://cdn.esm.sh/v41/@types/[email protected]/index.d.ts"' has no exported member 'LZStringStatic'. at https://cdn.esm.sh/v41/@typescript/[email protected]/dist/index.d.ts:58:176 ```