ST.db is a powerful npm package that provides an easy-to-use key-value interface for managing various types of databases, both local and cloud-based. This package simplifies the process of reading, writing, and seamlessly switching between different database engines. Whether you're working with local databases or cloud-based solutions, st.db offers a straightforward and efficient way to interact with your data.
To install the @st.db/mysql package and its associated database drivers, follow these steps:
- Install the main @st.db/mysql package:
npm install st.db @st.db/mysql
const { MySQLDriver } = require('@st.db/mysql');
import { MySQLDriver } from '@st.db/mysql';
Deno support
import { MySQLDriver } from 'npm:@st.db/mysql';
The MySQLDriver
enables interaction with Firestore databases. Here's how to use it:
import { Database } from "st.db";
import { MySQLDriver } from "@st.db/mysql";
const tableName = "my_table"; // Optional: specify the table name
const mysqlConfig = {
host: "localhost",
user: "username",
password: "password",
database: "my_database",
};
const options = {
driver: new MySQLDriver(mysqlConfig,tableName), // Specify the MySQLDriver and the configuration
};
const db = new Database(options);
-
Love what I do? Send me some coffee!? ☕
-
Can't send coffees? 😥 Nominate me for a st.db: Reviews | Openbase instead! Your support will help me to continue working on open-source projects like this. 🙏😇
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Discord Server .
You can see the Documentation of the st.db package to know all the details