koa-seo

1.1.1 • Public • Published

Npm Package Build Status Npm Downloads Dependency Status

koa-seo

SEO middleware for koa base on chrome-render, a substitute for prerender.

Modern web app use technique like react.js vue.js which render html in browser, this lead to search engine can't crawl your page content.

This project want to solve this kind of problem in a general-purpose way, it detect request is from search engine crawler then use headless chrome to render out your modern web page and return to crawler.

Here is koa-seo's architecture diagram: koa-seo arch

Use

npm i koa-seo

then use it:

const Koa = require('koa');
const seoMiddleware = require('koa-seo');
const app = new Koa();
 
app.use(seoMiddleware({
    render: {
        // use `window.isPageReady=1` to notify chrome-render page has ready
        useReady: true,
    }
}));
 
app.listen(3000);

you can download and run this complete demo

Options

For more flexible use case see koa-chrome-render.

Friends

Package Sidebar

Install

npm i koa-seo

Weekly Downloads

3

Version

1.1.1

License

none

Last publish

Collaborators

  • gwuhaolin