{"id":48332313,"url":"https://github.com/ianjwhite99/connected-car-node-sdk","last_synced_at":"2026-04-05T01:09:19.378Z","repository":{"id":37244256,"uuid":"441310531","full_name":"ianjwhite99/connected-car-node-sdk","owner":"ianjwhite99","description":"Open-source JavaScript SDK for Ford vehicles connected via FordPass and SYNC.","archived":false,"fork":false,"pushed_at":"2023-11-27T15:57:25.000Z","size":292,"stargazers_count":51,"open_issues_count":1,"forks_count":10,"subscribers_count":3,"default_branch":"stable","last_synced_at":"2025-09-06T07:32:54.143Z","etag":null,"topics":["cars","ford","fordpass","sdk","sdk-nodejs","smart-cars","sync","sync-connect","telematics"],"latest_commit_sha":null,"homepage":"","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/ianjwhite99.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"patreon":"ianjwhite99","custom":["https://www.buymeacoffee.com/ianjwhite9"]}},"created_at":"2021-12-23T22:36:18.000Z","updated_at":"2025-02-06T13:53:37.000Z","dependencies_parsed_at":"2023-01-21T07:02:49.288Z","dependency_job_id":null,"html_url":"https://github.com/ianjwhite99/connected-car-node-sdk","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/ianjwhite99/connected-car-node-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianjwhite99%2Fconnected-car-node-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianjwhite99%2Fconnected-car-node-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianjwhite99%2Fconnected-car-node-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianjwhite99%2Fconnected-car-node-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ianjwhite99","download_url":"https://codeload.github.com/ianjwhite99/connected-car-node-sdk/tar.gz/refs/heads/stable","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianjwhite99%2Fconnected-car-node-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31420789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T00:25:07.052Z","status":"ssl_error","status_checked_at":"2026-04-05T00:25:05.923Z","response_time":60,"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":["cars","ford","fordpass","sdk","sdk-nodejs","smart-cars","sync","sync-connect","telematics"],"created_at":"2026-04-05T01:09:18.791Z","updated_at":"2026-04-05T01:09:19.368Z","avatar_url":"https://github.com/ianjwhite99.png","language":"TypeScript","readme":"#\n\n![ConnectedCar Node SDK Logo](https://user-images.githubusercontent.com/35158392/147300580-29723aab-ffae-46d3-ae60-72af59065daa.png)\n\nThe ConnectedCar JavaScript SDK is an open-source, python package that provides the ability to send\ncommands to your Ford Sync Connect (Ford Pass) connected vehicle.\n\n## Installation\n\n```sh\nnpm install connected-car\n```\n\nRequirements\n\n- To make requests to a vehicle, the end user must have signed up for an account using\n  [Ford Pass](https://owner.ford.com/fordpass/fordpass-sync-connect.html). These credentials will be\n  used to authenticate your requests.\n\n## Getting Started\n\nImport the ConnectedCar SDK\n\n```javascript\nimport connectedcar from 'connected-car';\n```\n\nCreate a new connectedcar `client`\n\n- Note the default ConnectedCar client_id is `9fb503e0-715b-47e8-adfd-ad4b7770f73b`\n\n```javascript\nconst client = connectedcar.AuthClient('9fb503e0-715b-47e8-adfd-ad4b7770f73b', {region: 'US'}); // Region argument is only required if you live outside the United States.\n```\n\n- Note: If your region is outside of the US you can pass different region parameters to the User\n  class. Regions: (US, CA, EU, AU)\n\nUse `client.getAccessTokenFromCredentials()` to exchange your user credentials for an **token\nobject**. To make any vehicle data request to the Ford Sync Connect API, you'll need to give the SDK\na valid **access token**.\n\n```javascript\nconst token = await client.getAccessTokenFromCredentials({\n  username: '\u003cusername\u003e',\n  password: '\u003cpassword\u003e',\n});\n```\n\nAccess tokens will expire every 2 hours, so you'll need to constantly refresh them by calling\n`client.getAccessTokenFromRefreshToken()`\n\n```javascript\nconst refreshToken = await client.getAccessTokenFromRefreshToken(token.getRefreshToken());\n```\n\nWith your access token in hand, use `connectedcar.User()` to get a User object representing the\nuser.\n\n```javascript\nconst user = connectedcar.User(token.getValue());\n```\n\nUse `user.vehicles()` to return an array of all the vehicles associated with a users account. The\nresponse will include the **vehicle vin**.\n\n```javascript\nconst vehicles = await user.vehicles();\n\nconst vehicleList = []; // Array of vehicles\n\nfor (userVehicle of vehicles) // For each user vehicle\n  vehicleList.push(userVehicle['VIN']);\n```\n\nNow with a **vehicle vin** in hand, use `connectedcar.Vehicle()` to get a Vehicle object\nrepresenting the user's vehicle.\n\n```javascript\nlet currentVehicle = connectedcar.Vehicle(vehicleList[0], token.getValue());\n```\n\nNow you can ask the car to do things, or ask it for some data! For example:\n\n```javascript\nawait currentVehicle.start();\n```\n\n## Examples \u0026 Documentation\n\nFor more examples on what you can do with your ConnectedCar, see the [examples](/examples) folder or\ntake a peek at the [documentation](https://ianjwhite99.github.io/connected-car-node-sdk/).\n\n## Funding \u0026 Support\n\nIf you are interested in supporting the development of my projects check out my\n[patreon](https://www.patreon.com/ianjwhite99) or\n[buy me a coffee](https://www.buymeacoffee.com/ianjwhite9).\n\n## Disclaimer\n\nTHIS CODEBASE IS NOT ENDORSED, AFFILIATED, OR ASSOCIATED WITH FORD, FOMOCO OR THE FORD MOTOR\nCOMPANY.\n","funding_links":["https://patreon.com/ianjwhite99","https://www.buymeacoffee.com/ianjwhite9","https://www.patreon.com/ianjwhite99"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianjwhite99%2Fconnected-car-node-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fianjwhite99%2Fconnected-car-node-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianjwhite99%2Fconnected-car-node-sdk/lists"}