{"id":13398234,"url":"https://github.com/doubleleft/hook","last_synced_at":"2025-12-17T06:53:48.340Z","repository":{"id":11847448,"uuid":"14404856","full_name":"doubleleft/hook","owner":"doubleleft","description":"A RESTful and extendable Backend as a Service that provides instant backend to develop sites and apps faster, with dead-simple integration for JavaScript, iOS, Android and more.","archived":false,"fork":false,"pushed_at":"2017-03-19T00:06:24.000Z","size":3499,"stargazers_count":767,"open_issues_count":27,"forks_count":84,"subscribers_count":66,"default_branch":"master","last_synced_at":"2024-07-31T19:15:45.804Z","etag":null,"topics":["baas","backend-as-a-service","php"],"latest_commit_sha":null,"homepage":"http://hook-platform.org/","language":"PHP","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/doubleleft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"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":"2013-11-14T19:35:52.000Z","updated_at":"2024-07-25T15:08:42.000Z","dependencies_parsed_at":"2022-08-27T03:50:28.501Z","dependency_job_id":null,"html_url":"https://github.com/doubleleft/hook","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/doubleleft/hook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doubleleft%2Fhook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doubleleft%2Fhook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doubleleft%2Fhook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doubleleft%2Fhook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doubleleft","download_url":"https://codeload.github.com/doubleleft/hook/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doubleleft%2Fhook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27778899,"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-12-17T02:00:08.291Z","response_time":55,"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":["baas","backend-as-a-service","php"],"created_at":"2024-07-30T19:00:20.692Z","updated_at":"2025-12-17T06:53:48.322Z","avatar_url":"https://github.com/doubleleft.png","language":"PHP","funding_links":[],"categories":["PHP","类库"],"sub_categories":["未归类"],"readme":"\u003cimg align=\"right\" src=\"https://github.com/doubleleft/hook/blob/master/logo.png?raw=true\" alt=\"hook\" /\u003e\n\nWelcome to hook\n===\n\n\u003ca href=\"https://heroku.com/deploy?template=https%3A%2F%2Fgithub.com%2Fdoubleleft%2Fhook%2Ftree%2Fmaster\"\u003e\u003cimg src=\"https://www.herokucdn.com/deploy/button.png\" height=\"20\" \u003e\u003c/a\u003e\n[![Build status](https://travis-ci.org/doubleleft/hook.svg?branch=master)](https://travis-ci.org/doubleleft/hook)\n[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/doubleleft/hook?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\nhook is a RESTful, extendable Backend as a Service that provides instant backend\nto develop sites and apps faster, with dead-simple integration for iOS, Android,\nJavaScript and more.\n\n**Requirements**: PHP 5.5+, or [PHP\n5.3](http://doubleleft.github.io/hook-userguide/More/Deployment/#deploying-on-php-53).\n\n- [Features](#features)\n- [Installation](#installation)\n- [How to use](#how-to-use)\n- [Documentation](http://doubleleft.github.io/hook-userguide/)\n- [Examples](https://github.com/doubleleft/hook-examples)\n\nFeatures\n---\n\n- Multitenancy (same instance may be used for many apps)\n- User authentication (register, login, reset password)\n- Data persistance through `collections`\n- Data storage through [many\n  providers](http://doubleleft.github.io/hook-userguide/The-Basics/Configuration/#storage-providers)\n- Real-time communication through [WAMP](http://wamp.ws) subprotocol (WebSockets).\n- [Package\n  management](http://doubleleft.github.io/hook-userguide/The-Basics/Configuration/#composer-packages) through composer\n\nInstallation\n---\n\nRun this command in your terminal to get the lastest\nversion:\n\n```bash\ncurl -sSL https://raw.githubusercontent.com/doubleleft/hook/master/scripts/install.sh | bash\n```\n\nAt the end of the process you should have\n[hook](https://github.com/doubleleft/hook) and\n[hook-cli](https://github.com/doubleleft/hook-cli.git) installed in your\nmachine.\n\nHow to use\n---\n\nRun the server locally:\n\n```\nhook server\n```\n\nCreate a new application from the commandine:\n\n```\nhook app:new my-app --endpoint http://0.0.0.0:4665\n```\n\nIt will output access keys to use in the front-end. Checkout this example using\n[JavaScript](https://github.com/doubleleft/hook-javascript#how-to-use) frontend.\n\nTake a look at the [documentation](http://doubleleft.github.io/hook-userguide/) for\nmore details.\n\nFront-end Integration\n---\n\nReduce the gap between backend and frontend development:\n\n- [JavaScript](https://github.com/doubleleft/hook-javascript) ([docs](http://doubleleft.github.io/hook-javascript))\n- [C# / Unity3D](https://github.com/doubleleft/hook-csharp)\n- [Corona SDK](https://github.com/doubleleft/hook-corona-sdk)\n- [iOS / OSX](https://github.com/doubleleft/hook-swift)\n- [Java / Android](https://github.com/doubleleft/hook-android)\n- [C++](https://github.com/doubleleft/hook-cpp)\n- [PHP](https://github.com/doubleleft/hook-php) ([docs](http://doubleleft.github.io/hook-php))\n- [Ruby](https://github.com/doubleleft/hook-ruby) ([docs](http://doubleleft.github.io/hook-ruby/))\n- [Flash / ActionScript 3.0](https://github.com/doubleleft/hook-as3)\n\nLicense\n---\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoubleleft%2Fhook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoubleleft%2Fhook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoubleleft%2Fhook/lists"}