
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
ngx-explorer
Advanced tools
Lightweight and easy-to-use Angular File Explorer module. This is a front-end implementation only. There are no services at this point.
See live Demo
npm i ngx-explorer
Implement IDataService
provider interface which contains API for fetching data from the server.
import { IDataService } from 'ngx-explorer';
export class MyDataService implements IDataService<MyDataType> {
...
}
And provide the implementation:
{ provide: DataService, useClass: ExampleDataService },
Import components from ngx-explorer
and provide in imports
array in either module, main.ts or component.
imports: [ExplorerComponent],
and add tags to the template:
<nxe-explorer></nxe-explorer>
See list of available components here
styles.scss
:@import 'ngx-explorer/src/assets/icons/css/nxe.css';
All the communication with the server is done through the ExplorerService
APIs. It provides methods for fetching data, creating, renaming, deleting files and directories.
import { ExplorerService } from 'ngx-explorer';
...
constructor(private explorerService: ExplorerService) {
// start explorer by loading root level data
explorerService.openNode();
// subscribe to tree updates
explorerService.root$.subscribe((root) => {
console.log('Root:', root);
});
}
See Customization for more details.
FAQs
Angular file explorer component with tree view
The npm package ngx-explorer receives a total of 105 weekly downloads. As such, ngx-explorer popularity was classified as not popular.
We found that ngx-explorer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.