# date-names

> Repository of localized month and day names

Latest version **0.1.13** (published 2019-02-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install date-names
pnpm add date-names
yarn add date-names
bun add date-names
```

## 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.13 |
| Published | 2019-02-18 |
| First published | 2014-02-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 10.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Martin Andert |
| Maintainers | martinandert |
| Keywords | localization, translation, translate, localize, month, weekday, day, names, i18n, l10n |

## Links

- npm: https://www.npmjs.com/package/date-names
- Repository: https://github.com/martinandert/date-names
- Issues: https://github.com/martinandert/date-names/issues
- npm.io page: https://npm.io/package/date-names

## Alternatives

- [messageformat](https://npm.io/package/messageformat.md) — 329.7K weekly downloads
- [@mintlify/scraping](https://npm.io/package/@mintlify/scraping.md) — 294.8K weekly downloads
- [@mintlify/previewing](https://npm.io/package/@mintlify/previewing.md) — 209.5K weekly downloads
- [@mintlify/prebuild](https://npm.io/package/@mintlify/prebuild.md) — 209.5K weekly downloads
- [@mintlify/link-rot](https://npm.io/package/@mintlify/link-rot.md) — 206.3K weekly downloads

## Recent versions

- 0.1.13 (latest) — 2019-02-18
- 0.1.12 — 2018-02-28
- 0.1.11 — 2017-11-16
- 0.1.10 — 2017-07-25
- 0.1.9 — 2017-06-16
- 0.1.8 — 2016-11-07
- 0.1.7 — 2016-09-28
- 0.1.6 — 2016-03-01
- 0.1.5 — 2016-01-29
- 0.1.4 — 2014-12-11
- 0.1.3 — 2014-12-11
- 0.1.2 — 2014-02-21
- 0.1.1 — 2014-02-18
- 0.1.0 — 2014-02-18

## README

# date-names

Repository of localized month and day names. Usable in Node.js or in the browser.


## Installation

Install via npm:

```bash
% npm install date-names
```

## Usage

The default locale is `en` (English). Thus, a `require('date-names')` implicitly does `require('date-names/en')`.

```js
var names = require('date-names');

names.months              // => ['January', 'February', 'March', ...]
names.abbreviated_months  // => ['Jan', 'Feb', 'Mar', 'Apr', ...]

names.days                // => ['Sunday', 'Monday', 'Tuesday', ...]
names.abbreviated_days    // => ['Sun', 'Mon', 'Tue', 'Wed', ...]

names.am                  // => 'AM'
names.pm                  // => 'PM'
```

You can fetch a different translation by requiring a specific locale:

```js
var names = require('date-names/de');

names.months              // => ['Januar', 'Februar', 'März', ...]
names.abbreviated_months  // => ['Jan', 'Feb', 'Mär', 'Apr', ...]

names.days                // => ['Sonntag', 'Montag', 'Dienstag', ...]
names.abbreviated_days    // => ['So', 'Mo', 'Di', 'Mi', ...]

names.am                  // => 'vormittags'
names.pm                  // => 'nachmittags'
```

Brazilian Portuguese ([pt-br](pt-br.js)), Czech ([cs](cs.js)), Danish ([da](da.js)), Dutch ([nl](nl.js)), English ([en](en.js)), Finnish ([fi](fi.js)), French ([fr](fr.js)), German ([de](de.js)), Spanish ([es](es.js)), Russian ([ru](ru.js)), Slovak ([sk](sk.js)), Swedish ([sv](sv.js)) and Turkish ([tr](tr.js)) are currently the only supported locales. Pull requests welcome.


## Contributing

Here's a quick guide:

1. Fork the repo and `make install`.
2. Run the tests. We only take pull requests with passing tests, and it's great to know that you have a clean slate: `make test`.
3. Add a test for your change. Only refactoring and documentation changes require no new tests. If you are adding functionality or are fixing a bug, we need a test!
4. Make the test pass.
5. Push to your fork and submit a pull request.


## Licence

Released under The MIT License.

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