https://github.com/atlasland/opengraph
An Open Graph parser for Deno 🦕
https://github.com/atlasland/opengraph
deno denoland opengraph typescript
Last synced: about 2 months ago
JSON representation
An Open Graph parser for Deno 🦕
- Host: GitHub
- URL: https://github.com/atlasland/opengraph
- Owner: atlasland
- Created: 2021-08-24T20:43:53.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-03-02T22:01:05.000Z (over 4 years ago)
- Last Synced: 2025-03-04T23:29:32.415Z (over 1 year ago)
- Topics: deno, denoland, opengraph, typescript
- Language: TypeScript
- Homepage: https://deno.land/x/opengraph
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Open Graph for Deno
An Open Graph parser for Deno.
> ⚠️ This project is unstable and actively being developed. Use with caution.
## Usage
```ts
import { parse } from "https://deno.land/x/opengraph/mod.ts";
const { title, image, description, url } = parse("https://deno.land/");
```