Skip to content
Advertisement

Tag: snowpack

Natively import ES module dependencies from npm without bundling/transpiling first-party source

Background I’m trying to create a “buildless” JavaScript app, one where I don’t need a watch task running to transpile JSX, re-bundle code, etc every time I save any source file. It works fine with just first-party code, but I’m stuck when I try to import dependencies from npm. Goal I want to achieve this kind of workflow: npm install

Advertisement