Enter a website URL. This page will try to fetch the page (using a CORS proxy when necessary) and run a set of quick SEO checks: title, meta description, H1, canonical, robots, images alt, viewport, structured data and more. It returns a simple heuristic score and actionable notes.
// Save as server.js
const express = require('express');
const fetch = require('node-fetch');
const app = express();
const PORT = process.env.PORT || 3000;
app.get('/fetch', async (req, res) => {
  const url = req.query.url;
  if (!url) return res.status(400).send('Missing url');
  try {
    const response = await fetch(url, { redirect: 'follow' });
    const text = await response.text();
    res.set('Content-Type', 'text/html; charset=utf-8');
    res.send(text);
  } catch (err) {
    res.status(500).send('Fetch error: ' + err.message);
  }
});
app.listen(PORT, () => console.log('Proxy listening on', PORT));
        Then call your proxy from the frontend like: /fetch?url=https://example.com
Get the best deals on Amazon India. Shop today and save big on a wide range of products including electronics, fashion, home essentials, and more. Don't miss out on limited-time offers and exclusive discounts available only on Amazon.in. Start shopping now and enjoy incredible savings!
Buy Now .
