|
| 1 | +# @breejs/later |
| 2 | + |
| 3 | +[](https://travis-ci.com/breejs/later) |
| 4 | +[](https://codecov.io/gh/breejs/later) |
| 5 | +[](https://github.com/sindresorhus/xo) |
| 6 | +[](https://github.com/prettier/prettier) |
| 7 | +[](https://lass.js.org) |
| 8 | +[](LICENSE) |
| 9 | +[](https://npm.im/@breejs/later) |
| 10 | + |
| 11 | +> This project is a maintained fork of Later, as I needed it to be maintained and modernized for [Bree][]. Later is a library for describing recurring schedules and calculating their future occurrences. It supports a very flexible schedule definition including support for composite schedules and schedule exceptions. Create new schedules manually, via Cron expression, via text expressions, or using a fully chainable API. |
| 12 | +
|
| 13 | + |
| 14 | +## Table of Contents |
| 15 | + |
| 16 | +* [Features](#features) |
| 17 | +* [Documentation](#documentation) |
| 18 | +* [Install](#install) |
| 19 | +* [Usage](#usage) |
| 20 | + * [Node](#node) |
| 21 | + * [Browser](#browser) |
| 22 | +* [Contributors](#contributors) |
| 23 | +* [License](#license) |
| 24 | + |
| 25 | + |
| 26 | +## Features |
| 27 | + |
| 28 | +Types of schedules supported by _Later_: |
| 29 | + |
| 30 | +* Run a report on the last day of every month at 12 AM except in December |
| 31 | +* Install patches on the 2nd Tuesday of every month at 4 AM |
| 32 | +* Gather CPU metrics every 10 mins Mon - Fri and every 30 mins Sat - Sun |
| 33 | +* Send out a scary e-mail at 13:13:13 every Friday the 13th |
| 34 | + |
| 35 | + |
| 36 | +## Documentation |
| 37 | + |
| 38 | +See <https://breejs.github.com/later> for complete documentation and usage. |
| 39 | + |
| 40 | + |
| 41 | +## Install |
| 42 | + |
| 43 | +[npm][]: |
| 44 | + |
| 45 | +```sh |
| 46 | +npm install @breejs/later |
| 47 | +``` |
| 48 | + |
| 49 | +[yarn][]: |
| 50 | + |
| 51 | +```sh |
| 52 | +yarn add @breejs/later |
| 53 | +``` |
| 54 | + |
| 55 | + |
| 56 | +## Usage |
| 57 | + |
| 58 | +### Node |
| 59 | + |
| 60 | +```js |
| 61 | +const later = require('later'); |
| 62 | + |
| 63 | +console.log(later); |
| 64 | +``` |
| 65 | + |
| 66 | +### Browser |
| 67 | + |
| 68 | +#### VanillaJS |
| 69 | + |
| 70 | +This is the solution for you if you're just using `<script>` tags everywhere! |
| 71 | + |
| 72 | +```html |
| 73 | +<script src="https://unpkg.com/@breejs/later"></script> |
| 74 | +<script type="text/javascript"> |
| 75 | + (function() { |
| 76 | + console.log(later); |
| 77 | + })(); |
| 78 | +</script> |
| 79 | +``` |
| 80 | + |
| 81 | +#### Bundler |
| 82 | + |
| 83 | +Assuming you are using [browserify][], [webpack][], [rollup][], or another bundler, you can simply follow [Node](#node) usage above. |
| 84 | + |
| 85 | + |
| 86 | +## Contributors |
| 87 | + |
| 88 | +| Name | Website | |
| 89 | +| -------------- | -------------------------- | |
| 90 | +| **BunKat** | | |
| 91 | +| **Nick Baugh** | <http://niftylettuce.com/> | |
| 92 | + |
| 93 | + |
| 94 | +## License |
| 95 | + |
| 96 | +[MIT](LICENSE) © BunKat |
| 97 | + |
| 98 | + |
| 99 | +## |
| 100 | + |
| 101 | +[npm]: https://www.npmjs.com/ |
| 102 | + |
| 103 | +[yarn]: https://yarnpkg.com/ |
| 104 | + |
| 105 | +[browserify]: https://github.com/browserify/browserify |
| 106 | + |
| 107 | +[webpack]: https://github.com/webpack/webpack |
| 108 | + |
| 109 | +[rollup]: https://github.com/rollup/rollup |
| 110 | + |
| 111 | +[bree]: https://github.com/breejs/bree |
0 commit comments