@rankmyseo/server
v1.0.2
Published
Framework-agnostic RankMySEO HTTP handler
Downloads
500
Maintainers
Readme
@rankmyseo/server
Framework-agnostic HTTP handler for RankMySEO, built on Web-standard Request/Response. Exposes the full dashboard API plus site features (live scan, meta generator, blog, sitemap, llms.txt, markdown negotiation). Server-only.
Install
npm i @rankmyseo/server @rankmyseo/core @rankmyseo/storagePrefer a framework adapter where available (e.g. @rankmyseo/server-hono).
Usage
import { createHandler } from "@rankmyseo/server";
import { createStore } from "@rankmyseo/storage";
const store = createStore("sqlite:///path/to/db.sqlite");
const handler = createHandler(store /*, { config, agentModel } */);
// handler(request: Request): Promise<Response>All routes are scoped by x-tenant-id and x-project-id headers.
Documentation
See the Wiki → API Reference.
License
Apache-2.0
