An open API service indexing awesome lists of open source software.

https://github.com/mschn/ngx-voyage

File Explorer for Angular and PrimeNG
https://github.com/mschn/ngx-voyage

angular file-explorer library primeng

Last synced: 3 months ago
JSON representation

File Explorer for Angular and PrimeNG

Awesome Lists containing this project

README

        

# ngx-voyage

[![npmjs](https://img.shields.io/npm/v/ngx-voyage?color=blue)](https://www.npmjs.com/package/ngx-voyage)
[![E2E tests](https://github.com/mschn/ngx-voyage/actions/workflows/e2e_tests.yml/badge.svg)](https://github.com/mschn/ngx-voyage/actions/workflows/e2e_tests.yml)
[![Unit tests](https://github.com/mschn/ngx-voyage/actions/workflows/unit_tests.yml/badge.svg)](https://github.com/mschn/ngx-voyage/actions/workflows/unit_tests.yml)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=mschn_ngx-voyage&metric=coverage)](https://sonarcloud.io/summary/new_code?id=mschn_ngx-voyage)

`ngx-voyage` is a File Explorer component for [Angular](https://angular.dev/) and [PrimeNG](https://primeng.org/).\
Demo and docs: https://mschn.github.io/ngx-voyage/



## Quickstart

Install `ngx-voyage` with `npm`:

```bash
npm install ngx-voyage
```

Use `` in your app:

```ts
import { File, NgxVoyageComponent } from "ngx-voyage";

@Component({
selector: "app-root",
imports: [NgxVoyageComponent],
template: '',
})
export class AppComponent {
path = signal("/home/");
files = signal([]);
}
```

## Built with

- [Angular](https://angular.dev/)
- [PrimeNG](https://primeng.org/)
- [Tailwind](https://tailwindcss.com/)