Getting Started โ
Installation โ
Install the package using npm:
bash
npm install @mherod/get-cookieOr using yarn:
bash
yarn add @mherod/get-cookieOr using pnpm:
bash
pnpm add @mherod/get-cookieBasic Usage โ
Using the CLI โ
The simplest way to get started is using the CLI:
bash
npx @mherod/get-cookie --domain github.comUsing in Code โ
typescript
import { getCookie } from "@mherod/get-cookie";
async function example() {
const cookies = await getCookie({
domain: "github.com",
});
console.log("Found cookies:", cookies);
}Platform Support โ
- Windows: Chrome, Edge, Arc, Opera, Opera GX, Firefox
- macOS: Chrome, Edge, Arc, Opera, Opera GX, Firefox, Safari
- Linux: Chrome, Edge, Arc, Opera, Opera GX, Firefox
Next Steps โ
- Examples & Tutorials - Complete working examples and tutorials
- CLI Usage Guide - Learn command-line usage
- Use Cases - Real-world application patterns
- API Reference - Programmatic usage documentation
- Browser Support - Browser-specific features
- Architecture Overview - How it works under the hood