# ngx scheduler
[![Build Status](https://travis-ci.org/FlexWilliams/ngx-scheduler.svg?branch=master)](https://travis-ci.org/FlexWilliams/ngx-scheduler)
[![codecov](https://codecov.io/gh/FlexWilliams/ngx-scheduler/branch/master/graph/badge.svg)](https://codecov.io/gh/FlexWilliams/ngx-scheduler)
[![npm version](https://badge.fury.io/js/ngx-scheduler.svg)](http://badge.fury.io/js/ngx-scheduler)
[![devDependency Status](https://david-dm.org/FlexWilliams/ngx-scheduler/dev-status.svg)](https://david-dm.org/FlexWilliams/ngx-scheduler?type=dev)
[![GitHub issues](https://img.shields.io/github/issues/FlexWilliams/ngx-scheduler.svg)](https://github.com/FlexWilliams/ngx-scheduler/issues)
[![GitHub stars](https://img.shields.io/github/stars/FlexWilliams/ngx-scheduler.svg)](https://github.com/FlexWilliams/ngx-scheduler/stargazers)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/FlexWilliams/ngx-scheduler/master/LICENSE)

## Demo
https://FlexWilliams.github.io/ngx-scheduler/

## Table of contents

- [About](#about)
- [Installation](#installation)
- [Documentation](#documentation)
- [Development](#development)
- [License](#license)

## About

A reusable scheduler library for Angular

## Installation

Install through npm:
```
npm install --save ngx-scheduler
```

Then include in your apps module:

```typescript
import { NgModule } from '@angular/core';
import { NgxSchedulerModule } from 'ngx-scheduler';

@NgModule({
  imports: [
    NgxSchedulerModule.forRoot()
  ]
})
export class MyModule {}
```

Finally use in one of your apps components:
```typescript
import { Component } from '@angular/core';

@Component({
  template: '<hello-world></hello-world>'
})
export class MyComponent {}
```

You may also find it useful to view the [demo source](https://github.com/FlexWilliams/ngx-scheduler/blob/master/demo/demo.component.ts).

### Usage without a module bundler
```
<script src="node_modules/ngx-scheduler/bundles/ngx-scheduler.umd.js"></script>
<script>
    // everything is exported ngxScheduler namespace
</script>
```

## Documentation
All documentation is auto-generated from the source via [compodoc](https://compodoc.github.io/compodoc/) and can be viewed here:
https://FlexWilliams.github.io/ngx-scheduler/docs/

## Development

### Prepare your environment
* Install [Node.js](http://nodejs.org/) and NPM
* Install local dev dependencies: `npm install` while current directory is this repo

### Development server
Run `npm start` to start a development server on port 8000 with auto reload + tests.

### Testing
Run `npm test` to run tests once or `npm run test:watch` to continually run tests.

### Release
* Bump the version in package.json (once the module hits 1.0 this will become automatic)
```bash
npm run release
```

## License

MIT
