{"id":15934562,"url":"https://github.com/bolt04/client-connector","last_synced_at":"2026-02-07T02:33:55.679Z","repository":{"id":38983296,"uuid":"255102400","full_name":"BOLT04/client-connector","owner":"BOLT04","description":"An application to contact users via SMS using Twilio APIs","archived":false,"fork":false,"pushed_at":"2025-10-17T19:39:47.000Z","size":2273,"stargazers_count":1,"open_issues_count":19,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-18T21:39:57.265Z","etag":null,"topics":["sms","twilio-apis","typescript"],"latest_commit_sha":null,"homepage":"https://client-connector.herokuapp.com/","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/BOLT04.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-12T14:40:06.000Z","updated_at":"2025-10-17T19:37:46.000Z","dependencies_parsed_at":"2024-12-22T02:16:27.469Z","dependency_job_id":null,"html_url":"https://github.com/BOLT04/client-connector","commit_stats":{"total_commits":69,"total_committers":3,"mean_commits":23.0,"dds":0.4492753623188406,"last_synced_commit":"735577b5acbf3806dc3091284720a7d39e9126b4"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BOLT04/client-connector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOLT04%2Fclient-connector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOLT04%2Fclient-connector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOLT04%2Fclient-connector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOLT04%2Fclient-connector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BOLT04","download_url":"https://codeload.github.com/BOLT04/client-connector/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOLT04%2Fclient-connector/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29184978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T00:44:15.062Z","status":"online","status_checked_at":"2026-02-07T02:00:07.217Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["sms","twilio-apis","typescript"],"created_at":"2024-10-07T03:03:54.323Z","updated_at":"2026-02-07T02:33:55.664Z","avatar_url":"https://github.com/BOLT04.png","language":"TypeScript","readme":"# Client Connector\n[![CodeQL](https://github.com/BOLT04/client-connector/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/BOLT04/client-connector/actions/workflows/codeql-analysis.yml)\n\n![submission cover](/.github/submission-cover.PNG)\n\nA web application to contact users via SMS using Twilio APIs\n\n\u003e :information_source: This project is for a hackathon submission. You can find the [announcement post](https://twil.io/dev-hack-april) and my [documented journey of this project](https://dev.to/bolt04/my-first-hackathon-141d) on [dev.to](https://dev.to/).\n\n## Built with\n- Node.js web server using [Express.js](https://npm.im/express) and [Typescript](https://www.typescriptlang.org/)\n- [Programmable SMS Twilio API](https://www.twilio.com/docs/sms)\n- React and Javascript for the client-side\n- Deployed with [Heroku](https://www.heroku.com/). You can check out the live application [here](https://client-connector.herokuapp.com/)\n\n## Features\n- Send a message to a person's phone using SMS\n\n## Set up\n\n### Requirements\n\n- [Node.js](https://nodejs.org/)\n- A Twilio account - [sign up](https://www.twilio.com/try-twilio)\n\n### Twilio Account Settings\n\nThis application uses the `dotenv` module to read the environement variables configuration. So in order to run the server, you must create a .env file and set the appropriate values to each variable. Below is a table with the variables you need to set, or check the file `.env-sample` (optional values aren't on the table):\n\n| Env Variable | Description                                                                                                                                                  |\n| :---------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| TWILIO_ACCOUNT_SID  | Your primary Twilio account identifier - find this [in the Console](https://www.twilio.com/console).                                                         |\n| TWILIO_AUTH_TOKEN   | Used to authenticate - [just like the above, you'll find this here](https://www.twilio.com/console).                                                         |\n| TWILIO_FROM_PHONE_NUMBER | A Twilio phone number in [E.164 format](https://en.wikipedia.org/wiki/E.164) - you can [get one here](https://www.twilio.com/console/phone-numbers/incoming) |\n\nYou can also set `PORT` to specify the port the server should listen to.\n\n### Local development\n\nAfter the above requirements have been met:\n\n1. Clone this repository and `cd` into it\n\n```bash\ngit clone https://github.com/BOLT04/client-connector.git\ncd client-connector\n```\n\n2. Install dependencies\n\n```bash\nnpm install\n```\n\n3. Run the application\n\n```bash\nnpm start\n```\n\n5. Navigate to [http://localhost:3000](http://localhost:3000)\n\n\n## License\n\n[MIT](LICENSE)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbolt04%2Fclient-connector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbolt04%2Fclient-connector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbolt04%2Fclient-connector/lists"}