https://github.com/othastudio/nusql
Simplify the process of building SQL queries in Node.js applications
https://github.com/othastudio/nusql
nodejs sql sql-query typescript
Last synced: 3 months ago
JSON representation
Simplify the process of building SQL queries in Node.js applications
- Host: GitHub
- URL: https://github.com/othastudio/nusql
- Owner: othastudio
- License: mit
- Created: 2023-10-08T19:59:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-23T20:35:59.000Z (over 2 years ago)
- Last Synced: 2025-10-20T15:44:46.418Z (6 months ago)
- Topics: nodejs, sql, sql-query, typescript
- Language: JavaScript
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Simplified SQL Query Builder for Node.js
Simplify your raw SQL usage in Node.js and TypeScript with Nusql. Nusql is a lightweight SQL query builder that allows you to construct complex SQL queries easily and safely.
## Features
- 📝 Build SQL queries programmatically.
- 🛡️ Prevent SQL injection vulnerabilities.
- 🌐 Supports multiple SQL dialects.
- 🤝 Easily integrate with your existing Node.js projects.
- 📦 Lightweight and easy to use.
## Installation
```bash
npm install nusql
```
### Usage
```
const { Nusql } = require('nusql');
const nusql = Nusql.create();
const query = nusql
.select()
.from('users')
.where('age', '>', 18)
.orderBy('name')
.build();
```
## Documentation
Check out the Nusql documentation for detailed usage instructions, examples, and API reference.
## Contributing
We welcome contributions! If you'd like to contribute to Nusql, please follow our contributing guidelines.
## License
This project is licensed under the MIT License - see the LICENSE file for details.
## Acknowledgments
Special thanks to the open-source community and our contributors for making Nusql better with each release.
## Support
If you encounter any issues, have questions, or need assistance, feel free to open an issue on our GitHub repository.