# ngx-image-panel

> Image panel component

Latest version **1.0.1** (published 2017-08-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install ngx-image-panel
pnpm add ngx-image-panel
yarn add ngx-image-panel
bun add ngx-image-panel
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2017-08-22 |
| First published | 2017-08-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Vitalii Mishchenko |
| Maintainers | vm-mishchenko |
| Keywords | angular, component |

## Links

- npm: https://www.npmjs.com/package/ngx-image-panel
- Repository: https://github.com/vm-mishchenko/ngx-image-panel
- Homepage: https://github.com/vm-mishchenko/ngx-image-panel#readme
- Issues: https://github.com/vm-mishchenko/ngx-image-panel/issues
- npm.io page: https://npm.io/package/ngx-image-panel

## Recent versions

- 1.0.1 (latest) — 2017-08-22
- 1.0.0 — 2017-08-22

## README

# ngx-image-panel

## Installation

To install this the image panel, run:

```bash
npm install ngx-image-panel --save
```

## Consuming your ngx-image-panel

You can import the image panel in any Angular application by running:

```bash
npm install ngx-image-panel
```

and then from your Angular `AppModule`:

```typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { NgxImagePanelModule } from 'ngx-image-panel';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NgxImagePanelModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
```

Once the ngx-image-panel module is imported, you can use it in your Angular application:

```xml
<!-- You can now use the image panel in app.component.html -->

<ngx-image-panel [src]="src"></ngx-image-panel>
```

---
_Source: https://npm.io/package/ngx-image-panel · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
