{"id":15065302,"url":"https://github.com/gv14982/async-airtable","last_synced_at":"2025-10-05T08:30:35.993Z","repository":{"id":38380156,"uuid":"281467138","full_name":"GV14982/async-airtable","owner":"GV14982","description":"A lightweight npm package to handle working with the Airtable API.","archived":true,"fork":false,"pushed_at":"2023-09-19T20:24:11.000Z","size":1970,"stargazers_count":54,"open_issues_count":10,"forks_count":5,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-15T00:36:29.335Z","etag":null,"topics":["airtable","async","hacktoberfest","javascript","npm","promises"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/asyncairtable","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/GV14982.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":null,"support":null,"governance":null}},"created_at":"2020-07-21T17:54:23.000Z","updated_at":"2024-11-30T05:58:00.000Z","dependencies_parsed_at":"2023-09-24T17:56:18.459Z","dependency_job_id":"a1d5fea9-e611-44dd-8f96-95d64a165886","html_url":"https://github.com/GV14982/async-airtable","commit_stats":{"total_commits":165,"total_committers":5,"mean_commits":33.0,"dds":"0.17575757575757578","last_synced_commit":"17ac2b6469d27ef470cff2a4fbc08dcc210b9cba"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GV14982%2Fasync-airtable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GV14982%2Fasync-airtable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GV14982%2Fasync-airtable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GV14982%2Fasync-airtable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GV14982","download_url":"https://codeload.github.com/GV14982/async-airtable/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235378509,"owners_count":18980461,"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":["airtable","async","hacktoberfest","javascript","npm","promises"],"created_at":"2024-09-25T00:36:30.259Z","updated_at":"2025-10-05T08:30:30.522Z","avatar_url":"https://github.com/GV14982.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Async Airtable\n\n## ARCHIVED\n\nI strongly suggest using the current official [Airtable SDK](https://github.com/Airtable/airtable.js) as it now supports promises and I don't really have time to maintain this anymore.\n\n[![Build: Tests](https://img.shields.io/github/workflow/status/GV14982/async-airtable/next?label=Next\u0026logo=jest\u0026logoColor=white\u0026style=flat)](https://github.com/gv14982/async-airtable/actions)\n[![Build: Tests](https://img.shields.io/github/workflow/status/GV14982/async-airtable/main?label=Main\u0026logo=jest\u0026logoColor=white\u0026style=flat)](https://github.com/gv14982/async-airtable/actions)\n[![npm](https://img.shields.io/npm/v/asyncairtable)](https://www.npmjs.com/package/asyncairtable)\n[![npm (tag)](https://img.shields.io/npm/v/asyncairtable/next)](https://www.npmjs.com/package/asyncairtable)\n[![MIT License](https://img.shields.io/github/license/GV14982/async-airtable?style=flat)](LICENSE.md)\n\nAsyncAirtable is a lightweight npm package to handle working with the [Airtable API](https://airtable.com/api).\n\nThey have an existing library, but it is callback based and can get a little klunky at times, so I wrote this one that is promise based to make your life easier 😊.\n\nI also wrote a query builder so, instead of having to write those really annyoying [filter formula strings](https://support.airtable.com/hc/en-us/articles/203255215-Formula-Field-Reference#array_functions) you can just use an object like:\n\n```\n{\n  where: {\n    name: 'AsyncAirtable',\n    $gte: {stars: 13}\n  }\n}\n```\n\nwhich will generate the following filterFormula string for you: `AND({name} = 'AsyncAirtable', {stars} \u003e= 13)`\n\n## Requirements\n\n- NodeJS\n- npm\n- [Airtable account](https://airtable.com/signup)\n\n## Installation\n\n- Be sure get your [API key](https://support.airtable.com/hc/en-us/articles/219046777-How-do-I-get-my-API-key-)\n\n- To get the base ID of your new base. You can do this by heading over to [Airtable's API page](https://airtable.com/api) and selecting that base from the list, you should see:\n\n  \u003e The ID of this base is BASE_ID\n\n- Install all dependancies:\n\n```\nnpm install asyncairtable\n```\n\nThen you should be good to go!👍\n\n## Browser\n\nIf you want to use AsyncAirtable in a browser, please use the files in the `./dist` folder. There is a regular and a minified version.\n\nThey are also available via [unpkg.com](https://unpkg.com/):\n\n- [Regular](https://unpkg.com/asyncairtable/dist/asyncAirtable.js)\n- [Minified](https://unpkg.com/asyncairtable/dist/asyncAirtable.min.js)\n\n## Usage\n\n```javascript\nconst AsyncAirtable = require('async-airtable'); // or import { AsyncAirtable } from 'asyncairtable';\nconst asyncAirtable = new AsyncAirtable(API_KEY, BASE_ID, { ...CONFIG });\n```\n\n## Documentation\n\nTo setup documentation run:\n`npm run doc`\n\nThis will generate a _docs_ folder. Just open or serve _index.html_ and you will have the docs!\n\nYou can also view them [online](https://asyncairtable.com).\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgv14982%2Fasync-airtable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgv14982%2Fasync-airtable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgv14982%2Fasync-airtable/lists"}