aniftyco / kubit

Full stack web framework for Node.js
https://kubitjs.com/
MIT License
25 stars 2 forks source link

SEO #43

Open dmdboi opened 3 months ago

dmdboi commented 3 months ago

Kubit should come with a way to auto-generate sitemaps and robots.txt

joshmanders commented 3 months ago

How would you think this would work?

dmdboi commented 3 months ago

I think at minimum, a robots.txt file is generated if its a web app. Still working out details for sitemaps

joshmanders commented 3 months ago

I'm trying to figure out how automating these would be good and how, and all I can think of is maybe generating them dynamically based on the route definitions? If they don't have auth middleware on them, we include them in a sitemap.xml route, and maybe if they do have auth middleware we put them in robots.txt route as don't visit?

dmdboi commented 3 months ago

Yeah, I was thinking the same.