| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Go Check out the iOS / MacOS native verson of this app:
Preview how your website looks when shared on social media — before you deploy.
Getting Started
·
Features
·
API Reference
OpenGraph Viewer is a lightweight tool that extracts OpenGraph and Twitter Card metadata from any URL and renders realistic previews for major social platforms. Stop guessing how your links will look — see exactly how they'll appear on Facebook, Twitter/X, LinkedIn, Discord, and Slack.
Available as both a desktop application (macOS, Windows, Linux) and a web server for developers who want to validate their meta tags during local development without deploying to production first.
Download the latest release for your platform:
Simply install and launch the app — no configuration needed!
git clone https://github.com/Frostist/OpenGraphViewer.git
cd OpenGraphViewer
npm installRun as web server:
npm startOpen http://localhost:3456 in your browser.
Run as Electron desktop app:
npm run electronBuild desktop app for distribution:
# Build for your current platform
npm run electron:build
# Build for specific platforms
npm run electron:build:mac # macOS (.dmg)
npm run electron:build:win # Windows (.exe)
npm run electron:build:linux # Linux (.AppImage, .deb)Built applications will be in the dist/ folder.
OpenGraph Viewer exposes a single endpoint for programmatic use:
POST /api/fetch-og Content-Type: application/json
Request body:
{
"url": "https://example.com"
}Response:
{
"title": "Example",
"description": "An example page",
"image": "https://example.com/og-image.png",
"imageWidth": "1200",
"imageHeight": "630",
"siteName": "Example",
"twitterCard": "summary_large_image",
"allMeta": { ... }
}| Layer | Technology |
|---|---|
| Desktop App | Electron |
| Backend | Express.js |
| HTML Parsing | Cheerio |
| Frontend | Vanilla HTML, CSS, and JavaScript |
| Build Tool | electron-builder |
Contributions are welcome! Feel free to open an issue or submit a pull request.
Distributed under the MIT License. See LICENSE for more information.
| Back | FazBrowse Home | New Git URL |