# ng-rs-comp

> ## Installation

Latest version **0.1.4** (published 2018-02-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install ng-rs-comp
pnpm add ng-rs-comp
yarn add ng-rs-comp
bun add ng-rs-comp
```

## 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.1.4 |
| Published | 2018-02-14 |
| First published | 2018-02-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.0.0 |
| Dependencies | 0 |
| Unpacked size | 323.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jake Edward Danforth |
| Maintainers | soezpz |
| Keywords | angular |

## Links

- npm: https://www.npmjs.com/package/ng-rs-comp
- Repository: https://github.com/RevSpring/ng-rs-comp
- Issues: https://github.com/RevSpring/ng-rs-comp.git/issues
- npm.io page: https://npm.io/package/ng-rs-comp

## Recent versions

- 0.1.4 (latest) — 2018-02-14
- 0.1.3 — 2018-02-14
- 0.1.2 — 2018-02-14
- 0.1.1 — 2018-02-14

## README

# ng-rs-comp

## Installation

To install this library, run:

```bash
$ npm install @revspringinc/ng-rs-comp --save
```

## Consuming your library

Once you have published your library to npm, you can import your library in any Angular application by running:

```bash
$ npm install @revspringinc/ng-rs-comp
```

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 { RsFormsModule, PageService } from '@revspringinc/ng-rs-comp';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    RsFormsModule
  ],
  providers: [
    PageService
  ],
  bootstrap: [AppComponent]
})
export class AppModule {}
```

Once your library is imported, you can use its components, directives and pipes in your Angular application:

This section below is in work... (Jake Danforth)

```xml
<!-- You can now use your library component in app.component.html -->
<h1>
  {{title}}
</h1>
<sampleComponent></sampleComponent>
```

## Development

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

```bash
$ npm run build
```

To lint all `*.ts` files:

```bash
$ npm run lint
```

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