# shiny_waffle

> A cool module that does things

Latest version **0.0.1** (published 2020-05-20) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: has types; no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2020-05-20 |
| First published | 2020-05-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 77.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | u/garronej |
| Maintainers | a3d9dj3kc0sf0s |

## Links

- npm: https://www.npmjs.com/package/shiny_waffle
- Repository: https://github.com/garronej/shiny_waffle
- Issues: https://github.com/garronej/shiny_waffle/issues
- npm.io page: https://npm.io/package/shiny_waffle

## Recent versions

- 0.0.1 (latest) — 2020-05-20

## README

<p align="center">
    <img src="https://user-images.githubusercontent.com/6702424/80216211-00ef5280-863e-11ea-81de-59f3a3d4b8e4.png">  
</p>
<p align="center">
    <i>A cool module that does things</i>
    <br>
    <br>
    <img src="https://github.com/garronej/shiny_waffle/workflows/ci/badge.svg?branch=develop">
    <img src="https://img.shields.io/bundlephobia/minzip/shiny_waffle">
    <img src="https://img.shields.io/npm/dw/shiny_waffle">
    <img src="https://img.shields.io/npm/l/shiny_waffle">
</p>
<p align="center">
  <a href="https://github.com/garronej/shiny_waffle">Home</a>
  -
  <a href="https://github.com/garronej/shiny_waffle">Documentation</a>
  -
  <a href="https://gitter.im/shiny_waffle/">Chat</a>
</p>

---

# Install / Import

## Node:

```bash
$ npm install --save shiny_waffle
```
```typescript
import { myFunction, myObject } from 'shiny_waffle'; 
```

Specific import

```typescript
import { myFunction } from 'shiny_waffle/myFunction';
import { myObject } from 'shiny_waffle/myObject';
```

## Deno:

For the latest version:   
```typescript
import { myFunction, myObject } from 'https://deno.land/x/shiny_waffle/mod.ts';
```

To import a specific [release](https://github.com/garronej/shiny_waffle/releases):  

```typescript
import { myFunction, myObject } from 'https://deno.land/x/shiny_waffle@0.1.0/mod.ts';
```

Specific imports:  

```typescript
import { myFunction } from 'https://deno.land/x/shiny_waffle/myFunction.ts';
import { myObject } from 'https://deno.land/x/shiny_waffle/myObject.ts';
```

## Import from HTML, with CDN

Expose a global (wider browser support):  

```html
<script src="//unpkg.com/shiny_waffle/umd_bundle.min.js"></script>
<script>
  var myFunction = shiny_waffle.myFunction;
</script>
```

Or import as an ES module:  

```html
<script type="module" src="//unpkg.com/shiny_waffle/zz_esm/index.js"></script>
<script>
  import { myFunction, myObject } from 'shiny_waffle';
</script>
```

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