
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
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 21 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.