# nkd

> a package for discovering nakd lingerie

Latest version **1.0.1** (published 2020-11-30) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2020-11-30 |
| First published | 2020-11-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | ollen |
| Maintainers | ollen |
| Keywords | nkd |

## Links

- npm: https://www.npmjs.com/package/nkd
- Repository: https://github.com/oliverwk/lngr/tree/nkd
- Homepage: https://github.com/oliverwk/lngr/tree/nkd#readme
- Issues: https://github.com/oliverwk/lngr/tree/nkd/issues
- npm.io page: https://npm.io/package/nkd

## Dependencies (2)

- [cheerio](https://npm.io/package/cheerio.md) ^1.0.0-rc.3
- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.1

## Recent versions

- 1.0.1 (latest) — 2020-11-30
- 1.0.0 — 2020-11-30

## README

# NKD lngr

## About
I, wanted to have website/app to help me choose Lingrie because there is just so much! yes, this is about Lingrie so be prepared. This module is for lingerie from `nakd` i plan to expand this in the future ; )

## Features

- Easy to use API.
- Out put in `json` or in human readable format
- Use native promise and async functions.
- lightweight

## Installation

Just install with npm
```sh
$ npm install nkd
```

## Loading and configuring the module

```js
// CommonJS
const nkd = require('nkd');

// ES Module
import nkd from 'nkd';
```
##  Usage

NOTE: The documentation below is up-to-date with node version 15.1 and may change in the future.
### JSON

```js
const nkd = require('nkd');

(async () => {
   let average = 0;
	const lingeries = await nkd.GetLingerie();
    lingeries.forEach(lingerie => {
      console.log(lingerie);
      average += lingerie.prijs
    });
	console.log("The average price is:", average / lingeries.length);
})();
```

### Plain human readable text

```js
const nkd = require('nkd');

(async () => {
	const lingeries = await nkd.GetLingerie("human");
	console.log(lingeries);
})();
```
# nkd lngr

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