New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

angular-simple-file-explorer

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

angular-simple-file-explorer

Simple File Explorer for Angular

unpublished
latest
Source
npmnpm
Version
1.3.5
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

angular-simple-file-explorer

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.

DEMO

How to use

  • Install package
npm i ngx-explorer
  • Implement IDataService provider interface
import { IDataService } from 'ngx-explorer';

export class MyDataService implements IDataService<MyNodeType> {
    ... 
}
  • 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 <nxe-explorer></nxe-explorer> to the template
  • Add css import @import '~ngx-explorer/src/assets/icons/css/nxe.css'

explorer

Keywords

angular

FAQs

Package last updated on 03 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts