cratebox.io/:package@:version/:file
Cratebox is a rapid and widespread content delivery network that caters to all of NPM's offerings. It enables you to promptly and effortlessly retrieve any file from any package by employing a URL.
If you would like to have the 18.2.0 react production package, you just need to use the following URL:
https://cratebox.io/[email protected]/umd/react.production.min.js
A simple example about how you can include a library server by Cratebox.io into your HTML file.
<!DOCTYPE html>
<html>
<head>
<title>Sandbox</title>
<meta charset="UTF-8" />
</head>
<body>
<!-- Served with Cratebox.io --->
<script src="https://cratebox.io/[email protected]/dist/jquery.min.js"></script>
<!-- In src/index.js we have jQuery $ available! --->
<script src="src/index.js"></script>
</body>
</html>
Here's a CodeSandbox link for the above example 👉 https://codesandbox.io/s/cratebox-io-simple-serve-example-lx4dbl