# @synergetic/core

> Angular Powered Components

Latest version **0.1.1** (published 2017-08-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install @synergetic/core
pnpm add @synergetic/core
yarn add @synergetic/core
bun add @synergetic/core
```

## 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.1.1 |
| Published | 2017-08-15 |
| First published | 2017-08-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Cody Nicholson |
| Maintainers | synergetic |

## Links

- npm: https://www.npmjs.com/package/@synergetic/core
- npm.io page: https://npm.io/package/@synergetic/core

## Recent versions

- 0.1.1 (latest) — 2017-08-15
- 0.1.0 — 2017-08-10

## README

# @synergetic/core

Synergetic Component Library for Angular

## Getting Started

@synergetic/core is a library of Angular components containing common functionality and styles intended to be used as building blocks for webapps.

## Installation

Install `@synergetic/core` from `npm`

```shell
npm install @synergetic/core --save
```

You will need to add synergetic styles to your page

```
<!-- index.html -->
<link rel="stylesheet"
        href="node_modules/@synergetic/core/index.css">
```

Once installed modules can be imported into your NgModules

```js
import { RingModule } from '@synergetic/core';
...

@NgModule({
   ...
   imports: [RingModule, ... ],
    ... 
})
```

## SystemJS
To add synergetic to your SystemJS project (UMD Bundle)

Update `map` and `packages` with `@synergetic/core` in system.js config

```js
  let config = {
    map: {
      //...
      '@synergetic/core': 'node_modules/@synergetic/core',
      //...
    },
    packages: {
      //...
      '@synergetic/core':  { main: 'bundles/ng-synergetic.umd.js' },
      //...
    }
  };
```

## Library Dependencies

Standard Angular dependencies are needed (Library is tested on Angular ^4.2.6)

Other Peer Dependencies:

```js
{
    ...,
    "d3": "^4.7.4",
    ...
}
```

## API

Checkout the API Demo Site [reference](https://cody-nicholson.github.io/synergetic-api/)

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