With mrepo-sql, the ability to create repositories with features that improve code readability and project scalability is added.
npm install mrepo-sqlconst repo = new BaseRepository({
host: "localhost",
user: "root",
password: "123",
database: "test"
});
const result = await repo.execSP("SP_Product_List", {
params: [1]
});