artemis-file-explorer-component
v0.1.1
Published
Simple File Explorer for Angular
Downloads
5
Readme
artemis-file-explorer-component
Fork from ngx-explorer. I have created this fork to extend the properties of the file manager and adapt it to the project that I am developing in Supabase.
Lightweight and easy-to-use Angular File Explorer module. This is a front-end implementation only. There are no services at this point.
How to use
Install package npm i ngx-explorer
Implement IDataService provider interface import { IDataService } from 'ngx-explorer';
export class MyDataService implements IDataService { ... }
- Add NgxExplorerModule and data provider to NgModule import { NgxExplorerModule, DataService } from 'ngx-explorer';
@NgModule({ imports: [ ... NgxExplorerModule ], providers: [ { provide: DataService, useClass: MyDataService } ] }) export class AppModule { }
- Add to the template
- Add css import @import '~ngx-explorer/src/assets/icons/css/nxe.css'