parent-folder

1.1.0 • Public • Published

parent-folder

Travis CI build status Dependency Status View on npm View on npm

Get the name of the parent folder.

For the given path return the name of the most immediate parent folder. Useful for scripts and generators where you want to use the parent folder name in some way (project naming, etc).

Install

npm install --save parent-folder

Usage

var parentFolder = require('parent-folder');
 
// Assuming we're currently in:  /foo/bar/index.js
 
// Defaults to current file of call:
parentFolder()
//=> 'bar'
 
// Passing in a path to a folder:
parentFolder('/some/path/here')
//=>  'here'
 
// If using in a path to a file, make sure to
// pass in `true` flag as the second parameter.
parentFolder('/path/to/project/file.js', true)
//=> 'project'

API

See the API docs for full documentation.

Contributing

Pull requests welcome!

Please use the .editorconfig, .eslintrc configurations in your editor to ensure proper formatting.

Run the test suite with npm test and linting with npm run lint, make sure tests are passing and that you write tests for new features.

License

MIT © Dana Woodman

Readme

Keywords

none

Package Sidebar

Install

npm i parent-folder

Weekly Downloads

4

Version

1.1.0

License

MIT

Last publish

Collaborators

  • danawoodman