{"id":4717,"url":"https://github.com/feathersjs-ecosystem/client","last_synced_at":"2025-08-04T02:31:30.302Z","repository":{"id":22218832,"uuid":"25551621","full_name":"feathersjs-ecosystem/client","owner":"feathersjs-ecosystem","description":"[MOVED] Client side Feathers build","archived":true,"fork":false,"pushed_at":"2018-09-21T18:44:37.000Z","size":2152,"stargazers_count":111,"open_issues_count":0,"forks_count":27,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-07-12T00:25:08.085Z","etag":null,"topics":["feathers-client","feathersjs"],"latest_commit_sha":null,"homepage":"https://github.com/feathersjs/feathers","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/feathersjs-ecosystem.png","metadata":{"files":{"readme":"readme.md","changelog":"CHANGELOG.md","contributing":".github/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-21T23:36:31.000Z","updated_at":"2023-07-26T03:36:53.000Z","dependencies_parsed_at":"2022-07-17T12:46:06.022Z","dependency_job_id":null,"html_url":"https://github.com/feathersjs-ecosystem/client","commit_stats":null,"previous_names":["feathersjs/feathers-client","feathersjs/client"],"tags_count":72,"template":false,"template_full_name":null,"purl":"pkg:github/feathersjs-ecosystem/client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersjs-ecosystem%2Fclient","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersjs-ecosystem%2Fclient/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersjs-ecosystem%2Fclient/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersjs-ecosystem%2Fclient/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feathersjs-ecosystem","download_url":"https://codeload.github.com/feathersjs-ecosystem/client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feathersjs-ecosystem%2Fclient/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268639931,"owners_count":24282678,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"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":["feathers-client","feathersjs"],"created_at":"2024-01-05T20:17:21.183Z","updated_at":"2025-08-04T02:31:29.932Z","avatar_url":"https://github.com/feathersjs-ecosystem.png","language":"JavaScript","readme":"# @feathersjs/client\n\n\u003e __Important:__ The code for this module has been moved into the main Feathers repository at [feathersjs/feathers](https://github.com/feathersjs/feathers) ([package direct link](https://github.com/feathersjs/feathers/tree/master/packages/client)). Please open issues and pull requests there. No changes in your existing Feathers applications are necessary.\n\n[![Build Status](https://travis-ci.org/feathersjs/client.png?branch=master)](https://travis-ci.org/feathersjs/client)\n\n\u003e A client for Feathers services supporting many different transport libraries.\n\n## About\n\nWhile Feathers and its modules can be used on the client with an NPM compatible module loader like [Browserify](http://browserify.org/), [Webpack](https://webpack.github.io/) or [StealJS](http://stealjs.com), `@feathersjs/client` consolidates a standard set of client plugins into a single distributable that can be used standalone in the browser or with other module loaders (like [RequireJS](http://requirejs.org/)) that don't support NPM. The following modules are included:\n\n- [@feathersjs/feathers](https://github.com/feathersjs/feathers) as `feathers` (or the default module export)\n- [@feathersjs/errors](https://github.com/feathersjs/errors) as `feathers.errors`\n- [@feathersjs/rest-client](https://github.com/feathersjs/rest-client) as `feathers.rest`\n- [@feathersjs/socketio-client](https://github.com/feathersjs/socketio-client) as `feathers.socketio`\n- [@feathers/primus-client](https://github.com/feathersjs/primus-client) as `feathers.primus`\n- [@feathersjs/authentication-client](https://github.com/feathersjs/authentication-client) as `feathers.authentication`\n\nIn the browser a client that connects to the local server via websockets can be initialized like this:\n\n```html\n\u003cscript type=\"text/javascript\" src=\"//unpkg.com/socket.io-client@1.7.3/dist/socket.io.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\" src=\"//unpkg.com/@feathersjs/client@^3.0.0/dist/feathers.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\"\u003e\n  var socket = io();\n  var client = feathers()\n    .configure(feathers.socketio(socket));\n  var todoService = client.service('todos');\n  \n  todoService.on('created', function(todo) {\n    console.log('Someone created a todo', todo);\n  });\n  \n  todoService.create({\n    description: 'Todo from client'\n  });\n\u003c/script\u003e\n```\n\nFor the full documentation see [the Feathers documentation](http://docs.feathersjs.com/clients/feathers.html).\n\n## License\n\nCopyright (c) 2018 [Feathers contributors](https://github.com/feathersjs/client/graphs/contributors)\n\nLicensed under the [MIT license](LICENSE).\n","funding_links":[],"categories":["Components"],"sub_categories":["Backend"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeathersjs-ecosystem%2Fclient","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeathersjs-ecosystem%2Fclient","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeathersjs-ecosystem%2Fclient/lists"}