### Installing uncrypto Package Source: https://github.com/unjs/uncrypto/blob/main/README.md This snippet demonstrates how to install the `uncrypto` package using various Node.js package managers: npm, yarn, and pnpm. It provides the standard commands for adding the library to your project dependencies. ```sh # npm npm install uncrypto # yarn yarn add uncrypto # pnpm pnpm install uncrypto ``` -------------------------------- ### Importing uncrypto in ESM Source: https://github.com/unjs/uncrypto/blob/main/README.md This snippet shows how to import specific functions (`subtle`, `randomUUID`, `getRandomValues`) from the `uncrypto` library using ECMAScript Modules (ESM) syntax. This is the recommended way for modern JavaScript environments. ```js // ESM import { subtle, randomUUID, getRandomValues } from "uncrypto"; ``` -------------------------------- ### Importing uncrypto in CommonJS Source: https://github.com/unjs/uncrypto/blob/main/README.md This snippet illustrates how to import functions (`subtle`, `randomUUID`, `getRandomValues`) from the `uncrypto` library using CommonJS syntax. This method is typically used in older Node.js environments or projects that haven't transitioned to ESM. ```js // CommonJS const { subtle, randomUUID, getRandomValues } = require("uncrypto"); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.