# ng-admin-lte

> **AdminLTE components for Angular**

Latest version **0.0.2** (published 2017-09-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install ng-admin-lte
pnpm add ng-admin-lte
yarn add ng-admin-lte
bun add ng-admin-lte
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2017-09-23 |
| First published | 2017-09-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.11.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Adam Rutkowski |
| Maintainers | arutkowski00 |
| Keywords | angular |

## Links

- npm: https://www.npmjs.com/package/ng-admin-lte
- Repository: https://github.com/arutkowski00/ng-admin-lte
- Homepage: https://github.com/arutkowski00/ng-admin-lte#readme
- Issues: https://github.com/arutkowski00/ng-admin-lte/issues
- npm.io page: https://npm.io/package/ng-admin-lte

## Recent versions

- 0.0.2 (latest) — 2017-09-23
- 0.0.1 — 2017-09-04

## README

# `ng-admin-lte`
**AdminLTE components for Angular**

[![Build Status](https://travis-ci.org/arutkowski00/ng-admin-lte.svg)](https://travis-ci.org/arutkowski00/ng-admin-lte)

## Installation

To install this library, run:

```bash
$ yarn add ng-admin-lte
# OR
$ npm install --save ng-admin-lte
```

## Usage

Import `LteModule` in your Angular `AppModule`:

```typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

// Add import
import { LteModule } from 'ng-admin-lte';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    // Add imported module here
    LteModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
```

## Development

To generate all `*.js`, `*.d.ts` and `*.metadata.json` files:

```bash
$ npm run build
```

To lint all `*.ts` files:

```bash
$ npm run lint
```

## License

MIT © [Adam Rutkowski](mailto:a_rutkowski@outlook.com)

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