# at3

> run something at a specific time

Latest version **0.1.1** (published 2022-08-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install at3
pnpm add at3
yarn add at3
bun add at3
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2022-08-05 |
| First published | 2022-08-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 3.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alexander Löhr |
| Maintainers | alexloehr |
| Keywords | at, run |

## Links

- npm: https://www.npmjs.com/package/at3
- Repository: https://github.com/alex2600/node-at3
- Homepage: https://github.com/alex2600/node-at3#readme
- Issues: https://github.com/alex2600/node-at3/issues
- npm.io page: https://npm.io/package/at3

## Dependencies (4)

- [chai](https://npm.io/package/chai.md) ^4.3.6
- [dayjs](https://npm.io/package/dayjs.md) ^1.11.4
- [mocha](https://npm.io/package/mocha.md) ^10.0.0
- [bluebird](https://npm.io/package/bluebird.md) ^3.7.2

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 0.1.1 (latest) — 2022-08-05
- 0.1.0 — 2022-08-05

## README

# at3

Run something **at** a specific time.

## Install

    npm i at3

## Usage

### Callback style

    const at = require("at3")
    at(new Date("2023-01-01T00:00:00"), () => console.log("🎉"))

### Promise style

    const at = require("at3")
    at(new Date("2023-01-01T00:00:00")).then(() => console.log("🎉"))
    
or

    const at = require("at3")
    await at(new Date("2023-01-01T00:00:00"))
    console.log("🎉")

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