You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 17, 2025. It is now read-only.
The original esbuild_deno_loader (0.8.1) supports "npm:" specifier, however, this code does not, which makes running code that uses NPM to resolve some modules a little difficult (since this module allows esbuild to be run on Deno code from node.js there is a good chance that the code it is being run on may use this specifier).
This means code such as:
import _ from 'npm:lodash';
produces an error:
✘ [ERROR] Do not know how to load path: npm:lodash
The original esbuild_deno_loader (0.8.1) supports "npm:" specifier, however, this code does not, which makes running code that uses NPM to resolve some modules a little difficult (since this module allows esbuild to be run on Deno code from node.js there is a good chance that the code it is being run on may use this specifier).
This means code such as:
produces an error: