{"id":15728613,"url":"https://github.com/benwinding/ngx-filemanager","last_synced_at":"2025-10-20T06:22:17.720Z","repository":{"id":45270501,"uuid":"180115673","full_name":"benwinding/ngx-filemanager","owner":"benwinding","description":"File manager for Angular","archived":false,"fork":false,"pushed_at":"2021-07-16T03:55:07.000Z","size":35446,"stargazers_count":10,"open_issues_count":2,"forks_count":10,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-20T23:51:36.767Z","etag":null,"topics":["angular","cloud-storage","filemanager","filemanager-ui","firebase"],"latest_commit_sha":null,"homepage":"https://benwinding.github.io/ngx-filemanager/","language":"TypeScript","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/benwinding.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":"2019-04-08T09:30:14.000Z","updated_at":"2025-05-24T18:21:31.000Z","dependencies_parsed_at":"2022-09-13T16:10:24.991Z","dependency_job_id":null,"html_url":"https://github.com/benwinding/ngx-filemanager","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/benwinding/ngx-filemanager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benwinding%2Fngx-filemanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benwinding%2Fngx-filemanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benwinding%2Fngx-filemanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benwinding%2Fngx-filemanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benwinding","download_url":"https://codeload.github.com/benwinding/ngx-filemanager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benwinding%2Fngx-filemanager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277477644,"owners_count":25824664,"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-29T02:00:09.175Z","response_time":84,"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":["angular","cloud-storage","filemanager","filemanager-ui","firebase"],"created_at":"2024-10-03T23:04:50.423Z","updated_at":"2025-09-29T08:19:50.591Z","avatar_url":"https://github.com/benwinding.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NgxFilemanager\n\nA filemanager for Angular (ngx).\n\n### Filemanager Api\n\n\u003c!-- [START badges] --\u003e\n[![NPM Version](https://img.shields.io/npm/v/ngx-filemanager-api-firebase.svg)](https://www.npmjs.com/package/ngx-filemanager-api-firebase) \n[![License](https://img.shields.io/npm/l/ngx-filemanager-api-firebase.svg)](https://github.com/benwinding/ngx-filemanager/blob/master/LICENSE) \n[![Downloads/week](https://img.shields.io/npm/dm/ngx-filemanager-api-firebase.svg)](https://www.npmjs.com/package/ngx-filemanager-api-firebase) \n\u003c!-- [END badges] --\u003e\n\n### Filemanager Client\n\n\u003c!-- [START badges] --\u003e\n[![NPM Version](https://img.shields.io/npm/v/ngx-filemanager-client-firebase.svg)](https://www.npmjs.com/package/ngx-filemanager-client-firebase) \n[![License](https://img.shields.io/npm/l/ngx-filemanager-client-firebase.svg)](https://github.com/benwinding/ngx-filemanager/blob/master/LICENSE) \n[![Downloads/week](https://img.shields.io/npm/dm/ngx-filemanager-client-firebase.svg)](https://www.npmjs.com/package/ngx-filemanager-client-firebase)\n\u003c!-- [END badges] --\u003e\n\n## Features\n\n- Using Angular Material Design\n- Optimistic actions, (actions shown on client then confirmed on server)\n- File type icons\n- Actions\n\n  - Files / Folders\n    - Download\n    - Rename\n    - Delete\n    - Copy\n    - Move\n    - Set permissions\n  - Bulk Actions\n    - Delete\n    - Rename\n    - Move\n    - Copy\n    - Set permissions\n\n- Side Panel Previewer\n  - Image Preview\n  - Name\n  - File size\n  - Last modified\n  - Permissions\n\n## Supported Backends\n\n- [x] Google Cloud Storage (firebase storage)\n- [ ] FTP\n\n## Firebase - Get Started\n\nThis package has been designed to be easy to install on an Angular app.\n\n1. In your `functions` file for Firebase, navigate to the folder and install the 'filemanager' backend npm package.\n\n`yarn add ngx-filemanager-api-firebase`\n\n2. Then add the dependency to the cloud functions as an endpoint like so:\n\n``` typescript\nimport { FileManagerEndpointExpress } from '../../ngx-filemanager-api-firebase/src/public_api';\nexports.files_endpoint = functions.https.onRequest(FileManagerEndpointExpress(admin.storage()))\n```\n\nNow add the client-side npm package to the Angular App.\n\n`yarn add ngx-filemanager-client-firebase`\n\nThen import the module into your `app.module.ts`.\n\n``` typescript\nimport { NgxFilemanagerClientFirebaseModule } from 'ngx-filemanager-client-firebase';\n\nimports: [\n  ...,\n  NgxFilemanagerClientFirebaseModule\n]\n```\n\nThen add the icon assets to the `angular.json` file:\n\n``` json\n\"ngx-filemanager-client-firebase-demo\": {\n  ...,\n  \"architect\": {\n    \"build\": {\n      ...,\n      \"options\": {\n        ...,\n        \"assets\": [\n          ...,\n          {\n            \"glob\": \"**/*\",\n            \"input\": \"node_modules/ngx-filemanager-client-firebase/assets\",\n            \"output\": \"./assets/fileicons\"\n          }\n```\n\nFinally add the filemanager component where you want, with the correct configuration details to read your cloud function and the bucket name you want.\n\n``` javascript\nimport { Component } from '@angular/core';\nimport {\n  FilesSystemProviderService,\n  FileManagerConfig\n} from 'ngx-filemanager-client-firebase';\n\n@Component({\n  selector: 'app-test-page',\n  template: `\n    \u003ch2\u003eFile Explorer\u003c/h2\u003e\n    \u003cdiv\u003e\n      \u003cngx-filemanager [fileSystem]=\"firebaseClientProvider\" [config]=\"config\"\u003e\n      \u003c/ngx-filemanager\u003e\n    \u003c/div\u003e\n  `\n})\nexport class AppTestFunctionsLocallyComponent {\n  public config: FileManagerConfig = {\n    initialPath: '/'\n  };\n  constructor(\n    public firebaseClientProvider: FilesSystemProviderService\n  ) {\n    const bucketName = 'myspecial-bucket.appspot.com';\n    const apiEndpoint = 'http://myfirebase.cloudfunction.com/files_endpoint';\n    this.firebaseClientProvider.Initialize(bucketName, apiEndpoint);\n  }\n}\n```\n\nEnjoy! Please file an issue if there's any problems.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenwinding%2Fngx-filemanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenwinding%2Fngx-filemanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenwinding%2Fngx-filemanager/lists"}