DEV Community

Discussion on: Can I publish ES6 to npm?

Collapse
 
elliot profile image
Elliot

Here's a resource for npm + modules: pika.dev/cdn.

It's a CDN that serves npm modules as es6 modules! I haven't tried it out, but it seems pretty cool.

Collapse
 
stereobooster profile image
stereobooster

Yeah, I want to look into this one. Need some free time to read through

Collapse
 
stereobooster profile image
stereobooster

So I tried it. Indeed it solves the problem. My module is ES6 (unminified, with node-style module resolution), and it works in the browser as is.

Pika CDN transpiled it for me and changed import React from"react" to import React from"https://cdn.pika.dev/_/react/v16" 👌

Collapse
 
elliot profile image
Elliot

that is really cool. Thanks for trying it out and posting an update!