{"id":21305579,"url":"https://github.com/tflanagan/node-qb-table","last_synced_at":"2026-02-14T20:02:03.134Z","repository":{"id":25243680,"uuid":"103539138","full_name":"tflanagan/node-qb-table","owner":"tflanagan","description":"A lightweight, promise based abstraction layer for Quick Base Tables","archived":false,"fork":false,"pushed_at":"2024-01-11T04:10:39.000Z","size":7152,"stargazers_count":2,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-26T00:28:48.803Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://tflanagan.github.io/node-qb-table/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tflanagan.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":"2017-09-14T13:59:18.000Z","updated_at":"2023-10-31T12:29:04.000Z","dependencies_parsed_at":"2023-11-15T15:49:39.171Z","dependency_job_id":null,"html_url":"https://github.com/tflanagan/node-qb-table","commit_stats":{"total_commits":162,"total_committers":2,"mean_commits":81.0,"dds":"0.12345679012345678","last_synced_commit":"15d2d8fcc7178f38ea7eece8f9bb0d4519bc9c8d"},"previous_names":[],"tags_count":96,"template":false,"template_full_name":null,"purl":"pkg:github/tflanagan/node-qb-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tflanagan%2Fnode-qb-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tflanagan%2Fnode-qb-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tflanagan%2Fnode-qb-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tflanagan%2Fnode-qb-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tflanagan","download_url":"https://codeload.github.com/tflanagan/node-qb-table/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tflanagan%2Fnode-qb-table/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261786868,"owners_count":23209563,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-21T16:18:30.928Z","updated_at":"2026-02-14T20:02:03.106Z","avatar_url":"https://github.com/tflanagan.png","language":"TypeScript","readme":"qb-table\n========\n\n[![npm license](https://img.shields.io/npm/l/qb-table.svg)](https://www.npmjs.com/package/qb-table) [![npm version](https://img.shields.io/npm/v/qb-table.svg)](https://www.npmjs.com/package/qb-table) [![npm downloads](https://img.shields.io/npm/dm/qb-table.svg)](https://www.npmjs.com/package/qb-table)\n\nA lightweight, promise based abstraction layer for Quick Base Records\n\nWritten in TypeScript, targets Nodejs and the Browser\n\nThis library targets the new RESTful JSON-based API, not the old XML-based API. If you want to use the old XML-based API, then please use [v2.x](https://github.com/tflanagan/node-qb-table/tree/v2.x/) of this library.\n\n```\nIE 11 Users, if you are receiving this error:\nXMLHttpRequest: Network Error 0x80070005, Access is denied.\n\nThis is not a limitation of the library, just how Quick Base's new API works.\nIn order to use the new RESTful JSON-based API in Internet Explorer, you must\nchange a security setting:\n\n- Go to Internet Options -\u003e Security -\u003e Custom Level\n- Scroll down to and find the \"Miscellaneous\" section\n- Ensure \"Access data sources across domains\" is set to \"Enable\"\n- Click \"OK\", \"Yes\", \"OK\"\n```\n\nInstall\n-------\n```\n# Install\n$ npm install qb-table\n```\n\nDocumentation\n-------------\n\n[TypeDoc Documentation](https://tflanagan.github.io/node-qb-table/)\n\nServer-Side Example\n-------------------\n```typescript\nimport { QBTable } from 'qb-table';\nimport { QuickBase } from 'quickbase';\n\nconst quickbase = new QuickBase({\n    realm: 'www',\n    userToken: 'xxxxxx_xxx_xxxxxxxxxxxxxxxxxxxxxxxxxx'\n    // Use tempToken if utilizing an authentication token sent\n    // up from client-side code. If possible, this is preferred.\n    // tempToken: 'xxxxxx_xxx_xxxxxxxxxxxxxxxxxxxxxxxxxx'\n});\n\nconst qbTable = new QBTable({\n\tquickbase: quickbase,\n\tdbid: 'xxxxxxxxx',\n    fids: {\n        name: 6\n    }\n});\n\n(async () =\u003e {\n    try {\n        const results = await qbTable.load();\n\n        console.log(results);\n    }catch(err){\n        console.error(err);\n    }\n})();\n```\n\nClient-Side Example\n-------------------\nImport `QBTable` by loading `qb-table.browserify.min.js`\n\n```javascript\nvar quickbase = new QuickBase({\n    realm: 'www'\n});\n\nvar qbTable = new QBTable({\n\tquickbase: quickbase,\n    dbid: 'xxxxxxxxx',\n    fids: {\n        name: 6\n    }\n});\n\n// Using a Temporary Token\nquickbase.getTempTokenDBID({\n    dbid: qbTable.getDBID()\n}).then(function(results){\n    return qbTable.load();\n}).then(function(results){\n    console.log(results);\n}).catch(function(err){\n    console.error(err);\n});\n```\n\nLicense\n-------\nCopyright 2016 Tristian Flanagan\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftflanagan%2Fnode-qb-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftflanagan%2Fnode-qb-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftflanagan%2Fnode-qb-table/lists"}