{"id":21499187,"url":"https://github.com/cityssm/node-mssql-system-catalog","last_synced_at":"2026-02-11T16:36:21.986Z","repository":{"id":264233697,"uuid":"876275669","full_name":"cityssm/node-mssql-system-catalog","owner":"cityssm","description":"Helper functions to query a SQL Server database's system catalog.","archived":false,"fork":false,"pushed_at":"2025-01-13T20:59:00.000Z","size":404,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T09:52:08.241Z","etag":null,"topics":["mssql","sql-server","system-catalog"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@cityssm/mssql-system-catalog","language":"TypeScript","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/cityssm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-21T17:36:09.000Z","updated_at":"2024-10-22T15:11:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"d999d873-4e3d-4826-b1ad-e71df7ad6afc","html_url":"https://github.com/cityssm/node-mssql-system-catalog","commit_stats":null,"previous_names":["cityssm/node-mssql-system-catalog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cityssm/node-mssql-system-catalog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-mssql-system-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-mssql-system-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-mssql-system-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-mssql-system-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cityssm","download_url":"https://codeload.github.com/cityssm/node-mssql-system-catalog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cityssm%2Fnode-mssql-system-catalog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29338458,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:14:43.024Z","status":"ssl_error","status_checked_at":"2026-02-11T16:14:15.258Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["mssql","sql-server","system-catalog"],"created_at":"2024-11-23T17:10:03.130Z","updated_at":"2026-02-11T16:36:21.981Z","avatar_url":"https://github.com/cityssm.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# node-mssql-system-catalog\n\n[![npm](https://img.shields.io/npm/v/@cityssm/mssql-system-catalog)](https://www.npmjs.com/package/@cityssm/mssql-system-catalog)\n[![Maintainability](https://api.codeclimate.com/v1/badges/87c0f574e2bc4beba308/maintainability)](https://codeclimate.com/github/cityssm/node-mssql-system-catalog/maintainability)\n[![codecov](https://codecov.io/gh/cityssm/node-mssql-system-catalog/graph/badge.svg?token=2M7ZT46436)](https://codecov.io/gh/cityssm/node-mssql-system-catalog)\n[![Coverage Testing](https://github.com/cityssm/node-mssql-system-catalog/actions/workflows/coverage.yml/badge.svg)](https://github.com/cityssm/node-mssql-system-catalog/actions/workflows/coverage.yml)\n[![DeepSource](https://app.deepsource.com/gh/cityssm/node-mssql-system-catalog.svg/?label=active+issues\u0026show_trend=true\u0026token=3dMWtulF90OFrj0SU2Yla6MX)](https://app.deepsource.com/gh/cityssm/node-mssql-system-catalog/)\n\nHelper functions to query a SQL Server database's system catalog.\n\n- Uses a `ConnectionPool` object from the [node-mssql](https://www.npmjs.com/package/mssql) package,\n  or from the [@cityssm/mssql-multi-pool](https://www.npmjs.com/package/@cityssm/mssql-multi-pool) package.\n- TypeScript-friendly responses.\n\n## Installation\n\n```sh\nnpm install @cityssm/mssql-system-catalog\n```\n\n## Usage\n\n```javascript\nimport { getTables } from '@cityssm/mssql-system-catalog'\nimport mssql from 'mssql'\n\nconst pool = await mssql.connect({\n  /* mssql config settings */\n})\n\nconst databaseTables = await getTables(pool)\n\nconst databaseViews = await getViews(pool)\n```\n\n## Related Projects\n\n[@cityssm/mssql-multi-pool](https://www.npmjs.com/package/@cityssm/mssql-multi-pool)\u003cbr /\u003e\nA simple way to manage connections to multiple SQL Server databases using the Node.js Tedious package ([node-mssql](https://www.npmjs.com/package/mssql)).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcityssm%2Fnode-mssql-system-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcityssm%2Fnode-mssql-system-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcityssm%2Fnode-mssql-system-catalog/lists"}