ngx-voyage
v1.0.6
Published
File Explorer Component for Angular built with PrimeNG
Readme
ngx-voyage
ngx-voyage is a File Explorer component for Angular and PrimeNG.
Demo and docs: https://mschn.github.io/ngx-voyage/
Quickstart
Install ngx-voyage with npm:
npm install ngx-voyage highlight.jsYou will need to have @angular/core, primeng and highlight.js as they are peer dependencies.
Then you can use <ngx-voyage> in your app:
import { NgxVoyageComponent } from "ngx-voyage";
@Component({
selector: "app-root",
imports: [NgxVoyageComponent],
template: '<ngx-voyage [path]="/home" [files]="[]"></ngx-voyage>',
})
export class AppComponent {}Local dev
npm i
npm run start:demo