{"id":15789634,"url":"https://github.com/ytake/nazg-skeleton","last_synced_at":"2026-02-03T23:02:23.424Z","repository":{"id":57024265,"uuid":"116688302","full_name":"ytake/nazg-skeleton","owner":"ytake","description":"Begin developing HHVM/Hack Http Microframework Skeleton. Nazg is Action-Domain-Responder (ADR) Micro framework for HHVM/Hack","archived":false,"fork":false,"pushed_at":"2020-07-13T03:06:51.000Z","size":81,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-08-01T20:16:24.966Z","etag":null,"topics":["adr","dependency-injection","hack","hack-microframework","hacklang","hhvm","web-framework"],"latest_commit_sha":null,"homepage":"","language":"Hack","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/ytake.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}},"created_at":"2018-01-08T14:40:47.000Z","updated_at":"2020-07-13T03:03:19.000Z","dependencies_parsed_at":"2022-08-23T13:51:00.970Z","dependency_job_id":null,"html_url":"https://github.com/ytake/nazg-skeleton","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/ytake/nazg-skeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytake%2Fnazg-skeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytake%2Fnazg-skeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytake%2Fnazg-skeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytake%2Fnazg-skeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ytake","download_url":"https://codeload.github.com/ytake/nazg-skeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ytake%2Fnazg-skeleton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29060634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T22:28:58.191Z","status":"ssl_error","status_checked_at":"2026-02-03T22:28:56.515Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["adr","dependency-injection","hack","hack-microframework","hacklang","hhvm","web-framework"],"created_at":"2024-10-04T22:02:40.088Z","updated_at":"2026-02-03T23:02:23.394Z","avatar_url":"https://github.com/ytake.png","language":"Hack","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nazg Framework Skeleton\n\nNazg is a Action-Domain-Responder (ADR) Micro framework that helps you quickly write simple yet powerful web applications for HHVM/Hack.\n\nBegin developing HHVM/Hack Http Microframework Skeleton!\n\n[![Build Status](http://img.shields.io/travis/nazg-hack/framework/master.svg?style=flat-square)](https://travis-ci.org/nazg-hack/framework)\n[![Packagist](https://img.shields.io/packagist/dt/nazg/skeleton.svg?style=flat-square)](https://packagist.org/packages/nazg/skeleton)\n[![Packagist](https://img.shields.io/packagist/v/nazg/skeleton.svg?style=flat-square)](https://packagist.org/packages/nazg/skeleton)\n\n## Supported\n\nHHVM 4.41 and above.\n\n## About Nazg\n\n - [Fast Routing For Hack](https://github.com/hhvm/hack-router)\n - [Dependency Injection Container For HHVM/Hack](https://github.com/nazg-hack/glue)\n - [Request/Response Middleware Component](https://github.com/nazg-hack/heredity)\n\n## Create Project\n\n```bash\n$ composer create-project nazg/skeleton nazg-app-sample --prefer-dist\n```\n\n## For Develop\n\nExecute the hh-autoload.hack script each time you add the class file.\n\nFor Example  \n\n```bash\n$ hhvm ./vendor/bin/hh-autoload.hack\n```\n\n## Testing\n\n```bash\n$ hhvm ./vendor/bin/hacktest.hack tests/\n```\n\n## CLI Tools\n\nCLI Tools Provided by Default\n\n### Cache Clear Command\n\nfor [Nazg\\HCache](https://github.com/nazg-hack/hcache)\n\n```bash\n$ hhvm ./bin/cache-clear.hack\n```\n\n### Container Cache Clear Command\n\nfor [Nazg\\Glue](https://github.com/nazg-hack/glue)\n\n```bash\n$ hhvm ./bin/container-cache-clear.hack \n```\n\n## Docker\n\nUsing [hhvm/hhvm-proxygen:latest](https://hub.docker.com/r/hhvm/hhvm-proxygen/tags) and [nginx:1.17-alpine](https://hub.docker.com/_/nginx/?tab=tags) Containers\n\n```bash\n$ docker-compose build hhvm-dev web-server\n$ docker-compose up -d\n$ docker-compose exec hhvm /bin/bash -c 'cd /var/www \u0026\u0026 composer update'\n```\n\n### Composer Scripts\n\n#### Class Registrarion\n\n```bash\ndocker-compose exec hhvm /bin/bash -c 'cd /var/www \u0026\u0026 composer register'\n```\n\n#### Testing\n\n```bash\ndocker-compose exec hhvm /bin/bash -c 'cd /var/www \u0026\u0026 composer tests'\n```\n\n## Framework Repository\n\n[Framework](https://github.com/ytake/nazg-framework)\n\n## License\n\nThe Nazg Framework is licensed under The MIT License (MIT). See [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytake%2Fnazg-skeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fytake%2Fnazg-skeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fytake%2Fnazg-skeleton/lists"}