{"id":13456473,"url":"https://github.com/breejs/later","last_synced_at":"2025-05-16T08:06:54.062Z","repository":{"id":48396111,"uuid":"288207107","full_name":"breejs/later","owner":"breejs","description":"*Maintained fork of Later.* A javascript library for defining recurring schedules and calculating future (or past) occurrences for them. Includes support for using English phrases and Cron schedules. Works in Node and in the browser.","archived":false,"fork":false,"pushed_at":"2023-11-28T21:21:22.000Z","size":1654,"stargazers_count":140,"open_issues_count":19,"forks_count":15,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-24T08:02:06.039Z","etag":null,"topics":["browser","javascript","node","occurences","recurring","schedule"],"latest_commit_sha":null,"homepage":"https://breejs.github.io/later/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/breejs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"niftylettuce","patreon":"niftylettuce"}},"created_at":"2020-08-17T14:48:41.000Z","updated_at":"2025-03-18T06:20:34.000Z","dependencies_parsed_at":"2024-02-17T09:44:49.797Z","dependency_job_id":null,"html_url":"https://github.com/breejs/later","commit_stats":{"total_commits":178,"total_committers":11,"mean_commits":"16.181818181818183","dds":0.1910112359550562,"last_synced_commit":"59094cee89a39743f3dc2c3b803fc60a68f01441"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breejs%2Flater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breejs%2Flater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breejs%2Flater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/breejs%2Flater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/breejs","download_url":"https://codeload.github.com/breejs/later/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254493385,"owners_count":22080127,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser","javascript","node","occurences","recurring","schedule"],"created_at":"2024-07-31T08:01:22.693Z","updated_at":"2025-05-16T08:06:49.030Z","avatar_url":"https://github.com/breejs.png","language":"JavaScript","readme":"# @breejs/later\n\n[![build status](https://github.com/breejs/later/actions/workflows/ci.yml/badge.svg)](https://github.com/breejs/later/actions/workflows/ci.yml)\n[![code coverage](https://img.shields.io/codecov/c/github/breejs/later.svg)](https://codecov.io/gh/breejs/later)\n[![code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)\n[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)\n[![made with lass](https://img.shields.io/badge/made_with-lass-95CC28.svg)](https://lass.js.org)\n[![license](https://img.shields.io/github/license/breejs/later.svg)](LICENSE)\n[![npm downloads](https://img.shields.io/npm/dt/@breejs/later.svg)](https://npm.im/@breejs/later)\n\n\u003e 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.\n\n\n## Table of Contents\n\n* [Features](#features)\n* [Documentation](#documentation)\n* [Install](#install)\n* [Usage](#usage)\n  * [Node](#node)\n  * [Browser](#browser)\n* [Contributors](#contributors)\n* [License](#license)\n\n\n## Features\n\nTypes of schedules supported by *Later*:\n\n* Run a report on the last day of every month at 12 AM except in December\n* Install patches on the 2nd Tuesday of every month at 4 AM\n* Gather CPU metrics every 10 mins Mon - Fri and every 30 mins Sat - Sun\n* Send out a scary e-mail at 13:13:13 every Friday the 13th\n\n\n## Documentation\n\nSee \u003chttps://breejs.github.io/later/\u003e for complete documentation and usage.\n\n\n## Install\n\n[npm][]:\n\n```sh\nnpm install @breejs/later\n```\n\n\n## Usage\n\n### Node\n\n```js\nconst later = require('@breejs/later');\n\nconsole.log(later);\n```\n\n### Browser\n\n#### VanillaJS\n\nThis is the solution for you if you're just using `\u003cscript\u003e` tags everywhere!\n\n```html\n\u003cscript src=\"https://unpkg.com/@breejs/later\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\"\u003e\n  (function() {\n    console.log(later);\n  })();\n\u003c/script\u003e\n```\n\n#### Bundler\n\nAssuming you are using [browserify][], [webpack][], [rollup][], or another bundler, you can simply follow [Node](#node) usage above.\n\n\n## Contributors\n\n| Name             | Website                    |\n| ---------------- | -------------------------- |\n| **BunKat**       |                            |\n| **Nick Baugh**   | \u003chttp://niftylettuce.com/\u003e |\n| **yrambler2001** | \u003chttps://yrambler2001.me/\u003e |\n\n\n## License\n\n[MIT](LICENSE) © BunKat\n\n\n##\n\n[npm]: https://www.npmjs.com/\n\n[browserify]: https://github.com/browserify/browserify\n\n[webpack]: https://github.com/webpack/webpack\n\n[rollup]: https://github.com/rollup/rollup\n\n[bree]: https://github.com/breejs/bree\n","funding_links":["https://github.com/sponsors/niftylettuce","https://patreon.com/niftylettuce"],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreejs%2Flater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbreejs%2Flater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreejs%2Flater/lists"}