メインコンテンツまでスキップ

👋 Welcome!

Welcome to the documentation of simply-xp. This documentation will help you get started with simply-xp.

Documentation made for: v2.0.0

Installation

npm install simply-xp@latest
Pick a database adapter

simply-xp ships without a database driver. Install one alongside it — mongodb for MongoDB, or better-sqlite3 for SQLite:

npm install mongodb
# or
npm install better-sqlite3

simply-xp itself supports Node.js 14+, but the adapters require newer runtimes. If your Node.js version is older than the adapter's requirement, install an adapter major that matches it.


➕ Importing simply-xp

const simplyxp = require("simply-xp");

📚 Useful Pages