{"id":18065469,"url":"https://github.com/diogo-karma/angular-kpax","last_synced_at":"2026-03-07T22:31:29.945Z","repository":{"id":16531506,"uuid":"19284781","full_name":"diogo-karma/angular-kpax","owner":"diogo-karma","description":"Angular-Kpax - AngularJS factory for Kpax","archived":false,"fork":false,"pushed_at":"2023-09-29T15:19:16.000Z","size":1316,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-15T00:29:30.957Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/diogo-karma.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":"2014-04-29T17:13:17.000Z","updated_at":"2023-09-29T15:11:53.000Z","dependencies_parsed_at":"2024-12-02T20:04:55.320Z","dependency_job_id":null,"html_url":"https://github.com/diogo-karma/angular-kpax","commit_stats":null,"previous_names":["nechtan/angular-kpax"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/diogo-karma/angular-kpax","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diogo-karma%2Fangular-kpax","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diogo-karma%2Fangular-kpax/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diogo-karma%2Fangular-kpax/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diogo-karma%2Fangular-kpax/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diogo-karma","download_url":"https://codeload.github.com/diogo-karma/angular-kpax/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diogo-karma%2Fangular-kpax/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30234502,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: 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":[],"created_at":"2024-10-31T06:10:17.898Z","updated_at":"2026-03-07T22:31:29.917Z","avatar_url":"https://github.com/diogo-karma.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"angular-kpax // old but gold\n============\n\nAngular-Kpax - AngularJS factory for Kpax\n\nThis repo is for distribution on `bower`.\n\n## Install\n\nInstall with `bower`:\n\n```shell\nbower install angular-kpax\n```\n\nAdd a `\u003cscript\u003e` to your `index.html`:\n\n```html\n\u003cscript src=\"/bower_components/angular/angular.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"/bower_components/socket.io-client/dist/socket.io.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"/bower_components/angular-kpax/angular-kpax.min.js\"\u003e\u003c/script\u003e\n\u003c!-- or combined file --\u003e\n\u003cscript src=\"/bower_components/angular/angular.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"/bower_components/angular-kpax/socket.io-client-angular-kpax.js\"\u003e\u003c/script\u003e\n```\n\nAnd add `ngKpax` as a dependency for your app:\n\n```javascript\nvar myApp = angular.module('myApp', ['ngKpax']);\nmyApp.controller('myController', [\n  '$scope', 'kpax',\n  function ($scope, kpax) {\n    kpax.get({\n      url: '/hi',\n      success: function(data) {\n        console.log(data);\n      }\n    });\n  }\n]);\n```\n\n## Documentation\n\nTODO\n\n## Developing\n\n```bash\n  $ sudo npm -g gulp bower\n  $ bower install\n  $ npm install\n  $ gulp\n```\n\n\n### Dependencies:\n* angularjs \u003e= 1.2.x\n* socket.io-client \u003e= 0.9.x\n\n\n## License\nThe MIT License\n\n ▲ 2014 Diogo Karma \u003cdnechtan@gmail.com\u003e ▲ https://karmas.digital\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiogo-karma%2Fangular-kpax","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiogo-karma%2Fangular-kpax","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiogo-karma%2Fangular-kpax/lists"}