Package Exports
- resolve-file
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (resolve-file) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
resolve-file

Resolve an absolute file path from local directories, local node_modules or global node_modules.
Install with npm
$ npm i resolve-file --saveUsage
var resolveFile = require('resolve-file');API
resolveFile
Resolve the path to a file located in one of the following places:
- local to the current project (
'./index.js') - absolute (
'/usr/something.rc') - node module "main" file (
'cwd') - specific file inside a node module (
'cwd/LICENSE') - file located in user's home directory (
'~/.npmrc')
Params
name{String}: Filename to resolveoptions{Object}: Additional options to specifycwdreturns{String}: Resolvefilepathif found
Example
var fp = resolveFile('./index.js')
//=> /path/to/resolve-file/index.jsRelated projects
- cwd: Easily get the CWD (current working directory) of a project based on package.json, optionally starting… more
- expand-tilde: Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the… more
- look-up: Like findup-sync and supports the same features but 20x-40x faster on avg.
- resolve: resolve like require.resolve() on behalf of files asynchronously and synchronously
Running tests
Install dev dependencies:
$ npm i -d && npm testContributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Brian Woodward
License
Copyright © 2015 Brian Woodward Released under the MIT license.
This file was generated by verb-cli on August 01, 2015.