Home
Softono

Fresh Seo

Open source MIT TypeScript
55
Stars
7
Forks
7
Issues
3
Watchers
3 years
Last Commit

 About Fresh Seo

The fastest way ⚑️ to create sitemap and robots.txt in your Deno Fresh project πŸ‹

Platforms

Web Self-hosted

Languages

TypeScript

Links

Need Help Installing Fresh Seo?

We provide expert installation service for this software. Our team will install, configure, and secure Fresh Seo on your server. plans start at just $30.

Fresh SEO πŸ‹β€„β€„β€„Badge License

Quickly creating sitemaps for your Deno Fresh project.


Getting Started

Import the plugin freshSEOPlugin in your Fresh app

// ./main.ts
import { start } from "$fresh/server.ts";
import manifest from "./fresh.gen.ts";

import { freshSEOPlugin } from "https://deno.land/x/fresh_seo/mod.ts";

await start(manifest, {
  plugins: [
    freshSEOPlugin(manifest)
  ],
});

A basic sitemap should now be available at:

http://localhost:8000/sitemap.xml


How does it work?

Fresh SEO πŸ‹ automatically maps out static routes in your project.

For basic routes, you do not have to do anything manually.


Dynamic Routes

You will still have to map dynamic routes yourself!

// ./main.ts
import { start } from "$fresh/server.ts";
import manifest from "./fresh.gen.ts";

import { freshSEOPlugin } from "https://deno.land/x/fresh_seo/mod.ts";

await start(manifest, {
  plugins: [
    freshSEOPlugin(manifest, {
        include: ["/blog/intro"]
    })
  ],
});

You can also remove unwanted routes

// ./main.ts
import { start } from "$fresh/server.ts";
import manifest from "./fresh.gen.ts";

import { freshSEOPlugin } from "https://deno.land/x/fresh_seo/mod.ts";

await start(manifest, {
  plugins: [
    freshSEOPlugin(manifest, {
        exclude: [
            "/blog/intro",
            "/api/*"
        ]
    })
  ],
});

Testing

The test suite can be started with

deno task test