Banner

OG Inspector

Lakshyaraj Dash • Sun 21 Dec 2025


Features

  • Fetch Open Graph metadata (title, description, URL, type)
  • Fetch Twitter card metadata (title, description, URL, card type)
  • Lightweight and fast
  • Built with Next.js 13+

Getting Started

Prerequisites

Make sure you have Node.js installed (v18 or newer is recommended).

Installation

Clone the repository and install dependencies:

git clone https://github.com/yourusername/og-inspector.git
cd og-inspector
npm install
# or
yarn
# or
pnpm install
# or
bun install

Running Locally

Start the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 in your browser. Edit app/page.tsx to see live updates.

Project Structure

  • app/ – main app directory (Next.js 13+ App Router)
  • app/page.tsx – homepage and main logic
  • app/layout.tsx – global layout
  • app/favicon.ico – project favicon
  • next.config.js – Next.js configuration
  • package.json – dependencies and scripts

Fonts

This project uses Geist via Next.js next/font for optimized font loading.

Learn More

Deployment

The easiest way to deploy is via Vercel.

Check Next.js deployment docs for more options.