{"id":20109848,"url":"https://github.com/hyper63/hyper-adapter-fs","last_synced_at":"2025-09-06T17:34:05.922Z","repository":{"id":41983446,"uuid":"377899962","full_name":"hyper63/hyper-adapter-fs","owner":"hyper63","description":"File system adapter for Hyper Storage port","archived":false,"fork":false,"pushed_at":"2023-11-28T23:24:29.000Z","size":220,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-04T00:06:16.880Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hyper63.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":"hyper63"}},"created_at":"2021-06-17T16:45:18.000Z","updated_at":"2023-12-14T16:32:25.000Z","dependencies_parsed_at":"2023-11-29T00:26:19.871Z","dependency_job_id":"55fb001f-6abd-4be1-9459-9a5a89095c46","html_url":"https://github.com/hyper63/hyper-adapter-fs","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/hyper63/hyper-adapter-fs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyper63%2Fhyper-adapter-fs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyper63%2Fhyper-adapter-fs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyper63%2Fhyper-adapter-fs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyper63%2Fhyper-adapter-fs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyper63","download_url":"https://codeload.github.com/hyper63/hyper-adapter-fs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyper63%2Fhyper-adapter-fs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273936051,"owners_count":25194096,"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-09-06T02:00:13.247Z","response_time":2576,"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":[],"created_at":"2024-11-13T18:09:36.884Z","updated_at":"2025-09-06T17:34:05.903Z","avatar_url":"https://github.com/hyper63.png","language":"JavaScript","readme":"\u003ch1 align=\"center\"\u003ehyper-adapter-fs\u003c/h1\u003e\n\u003cp align=\"center\"\u003eA Storage port adapter that uses the local file system for object storage in the \u003ca href=\"https://hyper.io/\"\u003ehyper\u003c/a\u003e  service framework\u003c/p\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://nest.land/package/hyper-adapter-fs\"\u003e\u003cimg src=\"https://nest.land/badge.svg\" alt=\"Nest Badge\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/hyper63/hyper-adapter-fs/actions/workflows/test-and-publish.yml\"\u003e\u003cimg src=\"https://github.com/hyper63/hyper-adapter-fs/actions/workflows/test-and-publish.yml/badge.svg\" alt=\"Test\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/hyper63/hyper-adapter-fs/tags/\"\u003e\u003cimg src=\"https://img.shields.io/github/tag/hyper63/hyper-adapter-fs\" alt=\"Current Version\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n## Table of Contents\n\n- [Getting Started](#getting-started)\n- [Installation](#installation)\n- [Features](#features)\n- [Methods](#methods)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Getting Started\n\n`hyper.config.js`\n\n```js\nimport { default as fs } from 'https://x.nest.land/hyper-adapter-fs@2.0.3/mod.js'\n\nexport default {\n  app,\n  adapter: [{ port: 'storage', plugins: [fs({ dir: './data' })] }],\n}\n```\n\n## Installation\n\nThis is a Deno module available to import from\n[nest.land](https://nest.land/package/hyper-adapter-fs)\n\ndeps.js\n\n```js\nexport { default as fs } from 'https://x.nest.land/hyper-adapter-fs@2.0.3/mod.js'\n```\n\n## Features\n\n- Create an bucket as a directory\n- Remove an bucket as a directory\n- List buckets as directories\n- Put an object into a bucket as a directory\n- Remove an object from a bucket as a directory\n- Get an object from a bucket as a directory\n- List objects in a bucket as a directory\n\n## Methods\n\nThis adapter fully implements the Storage port and can be used as the\n[hyper Storage service](https://docs.hyper.io/storage-api) adapter\n\nSee the full port [here](https://nest.land/package/hyper-port-storage)\n\n## Contributing\n\nContributions are welcome! See the hyper\n[contribution guide](https://docs.hyper.io/contributing-to-hyper)\n\n## Testing\n\n```\ndeno task test\n```\n\nTo lint, check formatting, and run unit tests\n\n## License\n\nApache-2.0\n","funding_links":["https://github.com/sponsors/hyper63"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyper63%2Fhyper-adapter-fs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyper63%2Fhyper-adapter-fs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyper63%2Fhyper-adapter-fs/lists"}