👋 Welcome!
Welcome to the documentation of simply-xp. This documentation will help you get started with simply-xp.
Documentation made for:
v2.0.0Installation
- NPM
- PNPM
- YARN
npm install simply-xp@latest
pnpm install simply-xp@latest
yarn add 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
- JavaScript
- TypeScript
const simplyxp = require("simply-xp");
import * as simplyxp from "simply-xp";
📚 Useful Pages
Migration Support- Migrate from other libraries to simply-xp.Breaking Changes- Changes from v1 to v2.Support Server- Join our support server for help.