1.0.6 • Published 7 months ago

nusql v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

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

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.