
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@starbemtech/star-db-query-builder
Advanced tools
🎉 Welcome to the NodeJS Database Library! This library provides a set of robust methods to interact with your database seamlessly. With TypeScript support, it ensures type safety and great developer experience.
// Use npm
$ npm install star-db-query-builder
// Use yarn
$ yarn add star-db-query-builder
// Use pnpm
$ pnpm install star-db-query-builder
First, initialize the database with the appropriate configuration.
import { initDb, getDbClient } from 'star-db-query-builder';
// Use PostgresSQL
initDb({
type: 'pg',
options: {
connectionURL: 'YOUR POSTGRES CONNECTION URL'
},
});
// User MySQL
initDb({
type: 'mysql',
options: {
url: 'YOUR MYSQL CONNECTION URL'
},
});
// In your service, create an instance of getDbClient
const dbClient = getDbClient();
Retrieve the first matching record from a table.
import { findFirst } from 'star-db-query-builder';
const result = await findFirst({
tableName: 'users',
dbClient,
select: ['id', 'name', 'email'],
where: {
id: { operator: '=', value: 1 }
}
});
console.log(result);
Retrieve multiple records from a table.
import { findMany } from 'star-db-query-builder';
const results = await findMany({
tableName: 'users',
dbClient,
select: ['id', 'name', 'email'],
where: {
status: { operator: '= ', value: 'active' }
},
limit: 10,
offset: 0,
});
console.log(results);
Insert a new record into a table.
import { insert } from 'star-db-query-builder';
const newUser = { name: 'John Doe', email: 'john@example.com' };
const insertedUser = await insert({
tableName: 'users',
dbClient,
data: newUser,
returning: ['id', 'name', 'email'],
});
console.log(insertedUser);
Update an existing record in a table.
import { update } from 'star-db-query-builder';
const updatedUser = { name: 'John Smith' };
const result = await update({
tableName: 'users',
dbClient,
id: 1,
data: updatedUser,
returning: ['id', 'name', 'email'],
});
console.log(result);
Delete a record from a table.
import { deleteOne } from 'star-db-query-builder';
await deleteOne({
tableName: 'users',
dbClient,
id: 1,
permanently: true,
});
console.log('User deleted');
Execute a join query.
import { joins } from 'star-db-query-builder';
const joinResults = await joins({
tableName: 'orders',
dbClient,
select: ['orders.id', 'users.name'],
joins: [
{
table: 'users',
on: { 'orders.userId': 'users.id' },
},
],
where: {
JOINS: [
{
'users.id': { operator: '=', value: exist.user_id }
}
]
}
});
console.log(joinResults);
This project is licensed under the MIT License.
👨💻 Happy Coding!
FAQs
A query builder to be used with mysql or postgres
The npm package @starbemtech/star-db-query-builder receives a total of 177 weekly downloads. As such, @starbemtech/star-db-query-builder popularity was classified as not popular.
We found that @starbemtech/star-db-query-builder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.