# seed-packfinder

> Node utility to find seed packs

Latest version **0.0.3** (published 2016-12-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install seed-packfinder
pnpm add seed-packfinder
yarn add seed-packfinder
bun add seed-packfinder
```

## 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.0.3 |
| Published | 2016-12-16 |
| First published | 2016-07-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | itsjonq |
| Keywords | bem, css, design, functional, itcss, modular, oocss, packfinder, performance, seed, scss |

## Links

- npm: https://www.npmjs.com/package/seed-packfinder
- Repository: https://github.com/helpscout/seed-packfinder
- Homepage: https://github.com/helpscout/seed-packfinder#readme
- Issues: https://github.com/helpscout/seed-packfinder/issues
- npm.io page: https://npm.io/package/seed-packfinder

## Dependencies (1)

- [find-root](https://npm.io/package/find-root.md) ^1.0.0

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2016-12-16
- 0.0.2 — 2016-08-07
- 0.0.1 — 2016-07-28

## README

# seed-packfinder [![Build Status](https://travis-ci.org/helpscout/seed-packfinder.svg?branch=master)](https://travis-ci.org/helpscout/seed-packfinder) [![npm version](https://badge.fury.io/js/seed-packfinder.svg)](https://badge.fury.io/js/seed-packfinder)

Node utility to find seed packs!

## Install
```
npm install seed-packfinder --save-dev
```


## Basic Usage

```javascript
var packfinder = require('seed-packfinder');

var seedpacks = packfinder.find();

if (seedpacks) {
  console.log('Yay! We have seed packs');

  seedpacks.forEach(function(pack) {
    // Do stuff with the pack :)
  });
}
```


## Options

### packfinder.find()
Returns: `Array` (`false` if no packs are found)

This returns an `array` of seed pack names (`string`).


### packfinder.findPaths()
Returns: `Array` (`false` if no packs are found)

This returns an `array` of seed pack **paths** (`string`).

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