Installation
Verse is comprised of a core library, and a set of optional plugins. The core library is required, and you will also need to install at least one database driver plugin corresponding to the database you are targeting.
Verse Core
This package contains the core functionality of Verse, and is required for all Verse applications.
- npm
- Yarn
- pnpm
npm install @operativa/verse
yarn add @operativa/verse
pnpm add @operativa/verse
Database Drivers
Select a database driver appropriate the database you're using.
Verse currently supports the following database drivers:
PostgreSQL
- npm
- Yarn
- pnpm
npm install @operativa/verse-postgres
yarn add @operativa/verse-postgres
pnpm add @operativa/verse-postgres
MySQL
- npm
- Yarn
- pnpm
npm install @operativa/verse-mysql
yarn add @operativa/verse-mysql
pnpm add @operativa/verse-mysql
SQLite
- npm
- Yarn
- pnpm
npm install @operativa/verse-sqlite
yarn add @operativa/verse-sqlite
pnpm add @operativa/verse-sqlite
SQL Server
- npm
- Yarn
- pnpm
npm install @operativa/verse-mssql
yarn add @operativa/verse-mssql
pnpm add @operativa/verse-mssql
Oracle
- npm
- Yarn
- pnpm
npm install @operativa/oracle
yarn add @operativa/oracle
pnpm add @operativa/oracle
See the Database Drivers section for more information on how to use these drivers.