# resolve-glob

> Ensures that absolute file paths are always returned from a glob pattern or array of glob patterns.

Latest version **1.0.0** (published 2017-07-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install resolve-glob
pnpm add resolve-glob
yarn add resolve-glob
bun add resolve-glob
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-07-20 |
| First published | 2015-10-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Jon Schlinkert |
| Maintainers | jonschlinkert |
| Keywords | absolute, dir, directory, expand, expansion, file, filepath, glob, is, is-absolute, is-glob, pattern, resolve, tilde |

## Links

- npm: https://www.npmjs.com/package/resolve-glob
- Repository: https://github.com/jonschlinkert/resolve-glob
- Issues: https://github.com/jonschlinkert/resolve-glob/issues
- npm.io page: https://npm.io/package/resolve-glob

## Dependencies (5)

- [matched](https://npm.io/package/matched.md) ^1.0.2
- [relative](https://npm.io/package/relative.md) ^3.0.2
- [resolve-dir](https://npm.io/package/resolve-dir.md) ^1.0.0
- [is-valid-glob](https://npm.io/package/is-valid-glob.md) ^1.0.0
- [extend-shallow](https://npm.io/package/extend-shallow.md) ^2.0.1

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-07-20
- 0.1.8 — 2016-01-06
- 0.1.7 — 2015-11-14
- 0.1.4 — 2015-11-12
- 0.1.3 — 2015-10-18
- 0.1.2 — 2015-10-02
- 0.1.1 — 2015-10-02
- 0.1.0 — 2015-10-02

## README

# resolve-glob [![NPM version](https://img.shields.io/npm/v/resolve-glob.svg?style=flat)](https://www.npmjs.com/package/resolve-glob) [![NPM monthly downloads](https://img.shields.io/npm/dm/resolve-glob.svg?style=flat)](https://npmjs.org/package/resolve-glob) [![NPM total downloads](https://img.shields.io/npm/dt/resolve-glob.svg?style=flat)](https://npmjs.org/package/resolve-glob) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/resolve-glob.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/resolve-glob)

> Ensures that absolute file paths are always returned from a glob pattern or array of glob patterns.

## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save resolve-glob
```

## Usage

```js
var glob = require('resolve-glob');
```

See [matched](https://github.com/jonschlinkert/matched) for the full range of features and options.

**async**

```js
glob(['*.js'], function(err, files) {
  console.log(files[0])
  //=> '/Users/jonschlinkert/dev/resolve-glob/index.js'
});
```

**sync**

```js
var files = glob.sync(['*.js']);
console.log(files[0])
//=> '/Users/jonschlinkert/dev/resolve-glob/index.js'
```

### cwd expansion

The following characters are expanded to directories with [resolve-dir](https://github.com/jonschlinkert/resolve-dir) when used as leading characters in `options.cwd`:

* `~`: expanded to the user home directory
* `@`: expanded to global npm modules directory

See [resolve-dir](https://github.com/jonschlinkert/resolve-dir) for more details.

## About

### Related projects

* [has-glob](https://www.npmjs.com/package/has-glob): Returns `true` if an array has a glob pattern. | [homepage](https://github.com/jonschlinkert/has-glob "Returns `true` if an array has a glob pattern.")
* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
* [is-valid-glob](https://www.npmjs.com/package/is-valid-glob): Return true if a value is a valid glob pattern or patterns. | [homepage](https://github.com/jonschlinkert/is-valid-glob "Return true if a value is a valid glob pattern or patterns.")

### Contributing

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).

### Building docs

_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_

To generate the readme, run the following command:

```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```

### Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

```sh
$ npm install && npm test
```

### Author

**Jon Schlinkert**

* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)

### License

Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).

***

_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on July 20, 2017._

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