{"id":15003648,"url":"https://github.com/othastudio/nusql","last_synced_at":"2026-02-12T13:39:57.346Z","repository":{"id":200149022,"uuid":"702208316","full_name":"othastudio/nusql","owner":"othastudio","description":"Simplify the process of building SQL queries in Node.js applications","archived":false,"fork":false,"pushed_at":"2023-10-23T20:35:59.000Z","size":142,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-20T15:44:46.418Z","etag":null,"topics":["nodejs","sql","sql-query","typescript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/othastudio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-10-08T19:59:27.000Z","updated_at":"2023-10-15T14:45:03.000Z","dependencies_parsed_at":"2023-11-08T23:02:35.274Z","dependency_job_id":"e86a1fe0-293f-431c-bc4d-02204c98f082","html_url":"https://github.com/othastudio/nusql","commit_stats":null,"previous_names":["othastudio/nusql","othastudio/nuclea-sql"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/othastudio/nusql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Fnusql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Fnusql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Fnusql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Fnusql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/othastudio","download_url":"https://codeload.github.com/othastudio/nusql/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/othastudio%2Fnusql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29367432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T08:51:36.827Z","status":"ssl_error","status_checked_at":"2026-02-12T08:51:26.849Z","response_time":55,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nodejs","sql","sql-query","typescript"],"created_at":"2024-09-24T18:59:42.911Z","updated_at":"2026-02-12T13:39:57.331Z","avatar_url":"https://github.com/othastudio.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"200px\" src=\"https://i.postimg.cc/hv15fZR4/nusql-logo.png\" alt=\"nusql logo\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eSimplified SQL Query Builder for Node.js\u003c/h1\u003e\n\u003cdiv align=\"center\"\u003e\n \u003ca href=\"https://github.com/othastudio/nusql/blob/main/LICENSE\"\u003e\n \u003cimg src=\"https://img.shields.io/badge/License-MIT-blue.svg\" alt=\"License\"\u003e\n \u003c/a\u003e\n \u003ca href=\"[https://github.com/othastudio/nusql/blob/main/LICENSE](https://www.npmjs.com/package/nusql)\"\u003e\n \u003cimg src=\"https://img.shields.io/npm/v/nusql.svg\" alt=\"npm version\"\u003e\n \u003c/a\u003e\n \u003ca href=\"https://www.npmjs.com/package/nusql\"\u003e\n \u003cimg src=\"https://img.shields.io/npm/dt/nusql.svg\" alt=\"npm downloads\"\u003e\n \u003c/a\u003e\n \u003ca href=\"https://github.com/othastudio/nusql/commits/main\"\u003e\n \u003cimg src=\"https://github.com/othastudio/nusql/actions/workflows/test-package.yml/badge.svg\" alt=\"Testing\"\u003e\n \u003c/a\u003e\n\u003c/div\u003e\n\u003cp align=\"center\"\u003eSimplify 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.\u003c/p\u003e\n\n## Features\n\n- 📝 Build SQL queries programmatically.\n- 🛡️ Prevent SQL injection vulnerabilities.\n- 🌐 Supports multiple SQL dialects.\n- 🤝 Easily integrate with your existing Node.js projects.\n- 📦 Lightweight and easy to use.\n\n## Installation\n\n```bash\nnpm install nusql\n```\n### Usage\n```\nconst { Nusql } = require('nusql');\n\nconst nusql = Nusql.create();\n\nconst query = nusql\n  .select()\n  .from('users')\n  .where('age', '\u003e', 18)\n  .orderBy('name')\n  .build();\n```\n\n\n## Documentation\nCheck out the \u003ca href=\"nusql.otha.studio\"\u003eNusql documentation\u003c/a\u003e for detailed usage instructions, examples, and API reference.\n\n## Contributing\nWe welcome contributions! If you'd like to contribute to Nusql, please follow our contributing guidelines.\n\n## License\nThis project is licensed under the MIT License - see the \u003ca href=\"https://github.com/othastudio/nusql/blob/main/LICENSE\"\u003eLICENSE\u003c/a\u003e file for details.\n\n## Acknowledgments\nSpecial thanks to the open-source community and our contributors for making Nusql better with each release.\n\n## Support\nIf you encounter any issues, have questions, or need assistance, feel free to open an issue on our GitHub repository.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fothastudio%2Fnusql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fothastudio%2Fnusql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fothastudio%2Fnusql/lists"}