
#Unpkg que es how to#
This was an amazing find, and saved us a ton of engineering effort to try to figure out how to configure and manage a CDN on our own. While exploring CDN options, we discovered unpkg and realized that we just get that functionality for free. It would be better if non npm users could just drop a link tag into the head of their HTML page that would grab the design system CSS off of a CDN. Forcing consumers to introduce another package management tool just to get a few files seems heavy. We cannot guarantee that all consumers of the design system work in the npm ecosystem, though: our Data Science teams need to leverage design system CSS to build uptake branded reports and components, but they work primarily with python and the pip ecosystem. We distribute the design system via npm as a node_module. The design system is built as a set of CSS classes and html templates (ala bootstrap), and give your site an uptake look-and-feel. I work on a team that supports Uptake’s design system. Well talk about it slightly later.) The two unpkg.

This also lets you explore which other versions of the package are currently published.įinally, while unpkg’s documentation notes that assets are browser-cached for 4 hours, I found that assets were actually cached for 1 year (via cache-control headers). unpkg is a CDN for npm, which allows us to explore npm package easily.Just navigating to // <– note the slash at the end of the URL. Esta herramienta funciona de dos formas: Como un repositorio ampliamente utilizado para la publicación de proyectos Node.js de código abierto. You can specify a semantic version in your unpkg url, including semantic version ranges and qualifiers like ^ and ~ which will source the maximum satisfying sources the latest minor version of react 16 (16.5.2 as of this sources the latest patch version of react 16.4 (which is 16.4.2)

This is a pretty amazing service to offer for free. Unpkg partners with cloudfare and heroku to make this automatic distributing possible. Unpkg is a free content delivery network (CDN) that automatically distributes public packages published to npm. Unpkg: the free CDN for your npm packages
