CDN Resources for jest
Various ways to access jest via Content Delivery Networks
Package Installation
npm
npm install jest
yarn
yarn add jest
pnpm
pnpm add jest
CDN Links
jsDelivr
<script src="https://fastly.jsdelivr.net/npm/jest"></script>
Unpkg
<script src="https://unpkg.com/jest"></script>
jsDelivr ESM
<script type="module">
import jest from 'https://cdn.jsdelivr.net/npm/jest/+esm';
</script>
Skypack
<script type="module">
import jest from 'https://cdn.skypack.dev/jest';
</script>
CDN Provider Resources
Learn more about the CDN services used to deliver these packages