Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dbnx/mysql

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dbnx/mysql

A powerful and enhanced ORM library for MySQL, offering query execution, model creation, and full relational management.

  • 1.0.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
887
increased by322.38%
Maintainers
0
Weekly downloads
 
Created
Source

DBnx/mysql

https://rpackage.vercel.app/npm/docs/dbnx-mysql

A lightweight and flexible TypeScript-based database query and manipulation library. Designed to simplify database interactions with a clean and intuitive API.


Features

  • 🛠 Flexible Queries: Perform complex queries with simple methods.
  • 🗃 Model Integration: Seamlessly interact with database models.
  • ✏️ CRUD Operations: Create, Read, Update, and Delete records easily.
  • 🔒 Type Safety: TypeScript support for strong type checking.
  • Performance: Optimized for high-speed database operations.

Installation

Install DBnx using npm:

npm install @dbnx/mysql

Usage

1. Initialize DBnx

Start by initializing the DBnx instance:

import {DBnx} from '@dbnx/mysql';

const dbnx = new DBnx({
  host: 'localhost',
  user: 'root',
  password: 'password',
  database: 'your_database',
});

API Reference

DBnx Initialization

new DBnx(config: DBConfigType)
ParameterTypeDescription
hoststringDatabase host URL
userstringDatabase user
passwordstringDatabase password
databasestringName of the database

Contributing

We welcome contributions! To get started:

  1. Fork the repository.
  2. Create a new branch: git checkout -b feature/your-feature-name.
  3. Commit your changes: git commit -m 'Add some feature'.
  4. Push to the branch: git push origin feature/your-feature-name.
  5. Open a pull request.

License

This project is licensed under the MIT License.


Feel free to modify this template as per your specific implementation details!

Keywords

FAQs

Package last updated on 11 Dec 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc