# ngx-do

> An application library containing the **DO** framework

Latest version **0.3.15** (published 2019-03-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install ngx-do
pnpm add ngx-do
yarn add ngx-do
bun add ngx-do
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.15 |
| Published | 2019-03-03 |
| First published | 2019-01-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 10 |
| Unpacked size | 2 MB |
| Known vulnerabilities | 0 (+3 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | sjhoeksma |

## Links

- npm: https://www.npmjs.com/package/ngx-do
- Repository: https://github.com/sjhoeksma/ngx-do
- Homepage: https://github.com/sjhoeksma/ngx-do#readme
- Issues: https://github.com/sjhoeksma/ngx-do/issues
- npm.io page: https://npm.io/package/ngx-do

## Dependencies (10)

- [rxjs](https://npm.io/package/rxjs.md) ^6.3.3
- [uuid](https://npm.io/package/uuid.md) ^3.3.2
- [tslib](https://npm.io/package/tslib.md) ^1.9.0
- [hammerjs](https://npm.io/package/hammerjs.md) ^2.0.8
- [crypto-js](https://npm.io/package/crypto-js.md) ^3.1.9-1
- [screenfull](https://npm.io/package/screenfull.md) ^4.0.0
- [rxjs-compat](https://npm.io/package/rxjs-compat.md) ^6.3.3
- [ngx-restangular](https://npm.io/package/ngx-restangular.md) ^4.0.1
- [ngx-cookie-service](https://npm.io/package/ngx-cookie-service.md) ^2.1.0
- [@swimlane/ngx-datatable](https://npm.io/package/@swimlane/ngx-datatable.md) ^14.0.0

## Recent versions

- 0.3.15 (latest) — 2019-03-03
- 0.3.14 — 2019-03-02
- 0.3.12 — 2019-03-02
- 0.3.11 — 2019-03-02
- 0.3.10 — 2019-02-19
- 0.3.9 — 2019-02-15
- 0.3.8 — 2019-02-11
- 0.3.7 — 2019-01-28
- 0.3.6 — 2019-01-27
- 0.3.5 — 2019-01-23
- 0.3.4 — 2019-01-23
- 0.3.3 — 2019-01-23
- 0.3.2 — 2019-01-23
- 0.3.1 — 2019-01-22

## README

# NGX-DO
An application library containing the **DO** framework

## Using the ui components
To DoComponent is the engine of the application. Just embed the ```<ngx-do></ngx-do>``` tag in you **index.html** of you app

and your **main.ts **should look like below
```ts
import 'hammerjs';
import { NgModule } from '@angular/core';
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { environment } from './environments/environment';
import { AppModule } from './app/app.module';

// If we are production enable prodmode
if (environment.production) {
  enableProdMode();
}

// Bootstrap the Main Module and provide the Environment to the Do components
platformBrowserDynamic([{ provide: 'Environment', useValue: environment }])
  .bootstrapModule(AppModule)
  .catch(err => console.log(err));
```

You **app.module.ts** should look like something like this

```ts
import { NgModule } from '@angular/core';
import { CoreModule,
        DoModule,
        UiModule,
        DoComponent,
       } from 'ngx-do';
import { AppComponent } from './app.component';

@NgModule({
    imports: [
        ....
        DoModule,
        UiModule,
        CoreModule,
    ],
    declarations: [AppComponent],
   bootstrap: [
    DoComponent
   ]
})
export class AppModule { }
```

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