Upgrade to Pro — share decks privately, control downloads, hide ads and more …

AHA! JavaScript SEO Moments: 8 Common JS SEO Issues & How to Overcome Them

AHA! JavaScript SEO Moments: 8 Common JS SEO Issues & How to Overcome Them

The "Learn JavaScript for SEO Cohort" was a group learning experiment led by Sam Torres in conjunction with others from our beloved Women in Tech SEO community. This presentation is one of the lessons done within the cohort, reviewing 8 of the most frequently occurring issues with JavaScript SEO that Sam has encountered — as well as how to resolve them.

Sam Torres

May 30, 2022
Tweet

More Decks by Sam Torres

Other Decks in Marketing & SEO

Transcript

  1. IS ⊹ A summary of what I’ve learned/experienced ⊹ Common

    questions or errors I’ve run into, and the solutions I found for them that worked at the time ⊹ Free ⊹ Prioritized for SEO What This Presentation... IS NOT ⊹ A guide to learning JavaScript development ⊹ Comparison of JS Frameworks ⊹ Expansive or all-encompassing ⊹ Infallible 2
  2. Frameworks We’re Discussing... ⊹ Foundational JS ⊹ React × Gatsby

    ⊹ Angular ⊹ Vue Please know there are dozens more JS frameworks - these are just the ones I’ve most run into (and/or coded myself). 3
  3. My Process 4 1 Identify the stack I use a

    Chrom e extension called W appalyzer 2 Site craw l Using Scream ing Frog or ahrefs w ith the JS rendering, I’ll look for any errors 3 Investigate in GSC Know ing w hether your content is being craw led at all is essential to diagnosing issues
  4. Are you seeing that only a portion of your page/content

    is getting crawled/indexed? We’ve All Been There. 1
  5. Possible Culprit: JavaScript Errors 6 If you’re seeing some content

    in GSC Inspect but not all, you could have a JS error that’s causing it to be unparseable (unreadable). Find these errors by checking the Console in Chrome Dev Tools while on the page in question. Foundational JS React Angular Vue Gatsby
  6. Possible Culprit: JavaScript Errors 7 JS is unforgiving, and its

    error handling leaves much to be desired. Solution? Raise it to the developer. In my experience, 9/10 of errors that occur at the top of the console are just alerts and not necessarily errors. So be prepared for your dev to say that. Unsure that you believe the dev? Ask the experts in Women in Tech SEO. Remember that how this issue is framed could make a dev go immediately on the defensive. Tell them what you’re seeing in GSC and ask if that could be a cause. As much as we want clients and internal teams to recognize that we’re the experts, remember that your developer is the JS expert. Foundational JS React Angular Vue Gatsby
  7. Entire URLs, pages, and even sections of my site aren’t

    being crawled. Not the Gumdrop Buttons! 2
  8. Possible Culprit: Bad Linking Approach 9 ⊹ Links are not

    properly coded to use an anchor and href ⊹ No industry-standard for developers on how to make links ⊹ Solution? Provide documentation. Here’s Google’s. Foundational JS React Angular Vue Gatsby
  9. Possible Culprit: It’s a single page app (SPA) 10 ⊹

    Many JS frameworks end up creating a SPA. This makes for super quick experiences for users by skipping the page load step. It just replaces the page with the requested content. ⊹ This means that users don’t actually change URLs, meaning the crawlers can’t see changing content — they only ever see one page. ⊹ Solutions? × Rendering options × Router plugins Foundational JS React Angular Vue Gatsby If you’re having issues with seeing pageviews in Google Analytics, you can circumvent this problem by feeding History Change events with the new content request. This will NOT help with SEO however.
  10. Possible Culprit: It’s a single page app (SPA) 11 Foundational

    JS React Angular Vue Gatsby React Angular Vue Pre-rendering prerender.io react-snap prerender.io Angular Universal prerender.io prerender webpack Vue CLI Server-side Node next.js Angular Universal nuxt.js Dynamic prerender.io rendertron prerender.io rendertron prerender.io rendertron Isomorphic react-isomorphic-render Angular Universal (2) Uses SSR Static Site Generator Gatsby Hugo Jekyll Scully VuePress Gridsome
  11. Possible Culprit: It’s a single page app (SPA) 12 ⊹

    Routers are plugins for JS libraries that help with the URI/URL creation and overall user pathing. Foundational JS React Angular Vue Gatsby React React Router v4 plugin Redux Angular Angular Universal Vue Use “History” mode instead of “Hash” mode when configuring the app Vue Router
  12. Possible Culprit: No XML sitemap 13 ⊹ Thankfully, plugins exist

    for each of the major frameworks to automatically create an XML sitemap ⊹ Customizations regarding sitemap exclusions, generating multiple for larger sitemaps, etc. will require some customization from the developers. Foundational JS React Angular Vue Gatsby React & Gatsby react-router-sitemap Angular sitemapper-for-js Vue vue-cli-plugin-sitemap vue-router-sitemap If customization is needed, work with the developer to update the query for creating the sitemap to filter the content then, and not try to remove after the fact.
  13. My content’s being crawled, and images show in GSC Inspect,

    but why aren’t my images indexed? Let’s see if we can do this in less than a 1,000 words. 3
  14. Possible Culprit: Images are in CSS 15 ⊹ It’s likely

    that images are being served in CSS, rather than in HTML. ⊹ Solution? Provide documentation. Here’s Google’s. Foundational JS React Angular Vue Gatsby
  15. Possible Culprit: Blocking Crawlers 17 ⊹ Check that the folder

    where your images are stored are not actively blocking crawlers ⊹ Solution? Test asset URLs in the GSC Inspect tool. Check your robots.txt, redirect rules, and security protocols. Foundational JS React Angular Vue Gatsby
  16. Possible Culprit: No SEO/Metadata Vehicle 19 ⊹ For popular JS

    frameworks, the component for creating meta data with pages is usually done through a plugin. ⊹ Solution? Ask your developers or confirm that the SEO plugin appropriate for the framework is in place. Add documentation for how each tag should be rendered on each type of content, plus what field(s) in the CMS maps to that information. React Angular Vue Gatsby Foundational JS I know documentation is painful to write, but it will save you so many hours of rework and frustration. Plus, it’ll score some big points with your dev team as it will remove guesswork for them. Bonus: write it once and take it with you from job to job.
  17. Possible Culprit: No SEO/Metadata Vehicle 20 React Angular Vue Gatsby

    Foundational JS React & Gatsby Helmet Angular Angular Universal Vue Vue-meta This is also a great time to talk to your developers about implementing structured data at scale!
  18. Possible Culprit: Missing Config Files 22 ⊹ If your React

    site is using react-router-4 (and it should), then there are a couple files that need to be included to render a nice-looking 404 page. ⊹ Solution? Check with your developers that they’ve created a route.js and server.js file. This is where any design should be added. React Angular Vue Gatsby Foundational JS
  19. Why aren’t my canonical tags properly working on my Gatsby

    site? If working with Gatsby, expect this to crash the party. 7
  20. Possible Culprit: Plugin Dependency 24 ⊹ Many developers just install

    gatsby-plugin-canonical-urls for handling canonicals. Unfortunately this ALWAYS builds with each URL self-referencing. ⊹ Solution? The developer will need to hardcode the canonical tag into the template header. Here’s even the code that they can use to do that. Make sure they properly connect it to whatever field you have in the CMS for setting the canonical. React Angular Vue Gatsby Foundational JS
  21. I’ve got orphaned pages, pages that shouldn’t even be live

    - what the heck Gatsby? It’s all scientific, I read it in a book. 8
  22. Possible Culprit: The Build Folder 26 ⊹ When given the

    command to “build” the site, Gatsby creates them all within a /build folder within the app. These are then ported over to the public_html folder upon build completion. ⊹ If a build gets interrupted, or there are limitations on what goes into the public_html folder, then files can end up left in the build folder. ⊹ Solution? If a build got interrupted, it just needs to be run again. If it’s the latter, ask your developers to add the gatsby-plugin-exclude so that those files are never even built. React Angular Vue Gatsby Foundational JS
  23. Possible Culprit: The Src/Pages Folder 27 ⊹ In every Gatsby

    project, there exists a src/pages folder. If the project hasn’t gone through re-factoring or clean up, there could still be files in that folder that are causing them to be rendered even though they shouldn’t be. ⊹ Solution? Talk with your developer about what’s in those folders. If you have read access to the repo, you should be able to locate those yourself. Anything that’s in the folder that shouldn’t be, just ask for it to be deleted. React Angular Vue Gatsby Foundational JS
  24. Possible Culprit: Draft Mode and GraphQL 28 ⊹ Gatsby uses

    a query language called GraphQL to interact with your CMS/database and populate the dynamic data into static HTML files. ⊹ Developers often pull ALL of the content entries, and then use the rendering components to filter what should be live and what shouldn’t. Unfortunately, this means that Gatsby will build the page for a dedicated resource. ⊹ Solution? Ask your developer to adjust the query to filter then, and not at build/render time. React Angular Vue Gatsby Foundational JS Example: a blog post URL is being created and rendered, but the blog post is NOT showing on the blog index page.
  25. 29 My Toolset ⊹ Chrome extension: Wappalyzer ⊹ Google Search

    Console URL Inspection Tool ⊹ Screaming Frog with JS rendering ⊹ Chrome extension: HTTP Headers ⊹ Google SEO Developer Guidelines
  26. Sample Sites 30 React Zagat Discord AirBnB Vue Google Careers

    LOUIS VUITTON® Nintendo UK Bitcoin Figma National Geographic UK Gatsby JSON Schema Grasshopper US Travel Bureau Angular