1.0.2 • Published 6 years ago

parse-filepath v1.0.2

Weekly downloads
2,843,570
License
MIT
Repository
github
Last release
6 years ago

parse-filepath NPM version NPM downloads Build Status

Pollyfill for node.js path.parse, parses a filepath into an object.

You might also be interested in global-prefix.

Install

Install with npm:

$ npm install parse-filepath --save

Usage

var parsePath = require('parse-filepath');
parsePath(filepath);

This can be used as a polyfill for the native node.js path.parse() method, and it also adds a few properties:

  • path: the original filepath
  • isAbsolute: (getter) true if the given path is absolute
  • absolute: (getter) fully resolved, absolute filepath
  • dirname: alias for dir
  • basename: alias for base
  • extname: alias for ext
  • stem: alias for name

Example

var parsePath = require('parse-filepath');
console.log(parsePath('foo/bar/baz/index.js'));

Returns:

{ root: '',
  dir: 'foo/bar/baz',
  base: 'index.js',
  ext: '.js',
  name: 'index',

  // aliases
  extname: '.js',
  basename: 'index.js',
  dirname: 'foo/bar/baz',
  stem: 'index',

  // original path
  path: 'foo/bar/baz/index.js',

  // getters
  absolute: [Getter/Setter],
  isAbsolute: [Getter/Setter] }

Related projects

You might also be interested in these projects:

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

Generate readme and API documentation with verb:

$ npm install verb && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016, Jon Schlinkert. Released under the MIT license.


This file was generated by verb, v, on March 29, 2016.

fined@graphql-codegen/visitor-plugin-common@graphql-codegen/near-operation-file-presetlavanta-elixir@nsine/graphql-codegen-multihead-presettemp-eleventy-temp@mobileheadholding/graphql-codegen-multihead-presetpanqibao@infinitebrahmanuniverse/nolb-parse-@prodam/prodam-typeslaravel-elixir-gulp-v4-compatsimplified-build@everything-registry/sub-chunk-2410templaticaglob2filepathglob2fpglob2pathglyphhangerglob-fsgraphql-codegen-multihead-presetlaravel-elixir-cdn-assetlaravel-elixirlaravel-elixir-cloughax-forklaravel-elixir-gulp-sass4laugharn-elixirkeyword-countlaravel-elixir-without-sasslaravel-imagelaravel-elixir-replacelaravel-elixir-versionslaravel-elixir-ng-scriptslaravel-elixir-ng-scripts-5.2lufi-clilynx-gulpm2m-chartjs-plugin-crosshairgulp-indexifygrunt-json-toc-generatorgulp-destgulp-drinkbargulp-eaglegrunt-vlc-libsh5-templetegrunt-ffmpeg-libsgulpkitgulp-cocktailhackmyapihackmycorehackmyresumehcm-jshero-elixirjeuxuimanifest-json-webpack-pluginminidocsneofen8n-nodes-caldavn8n-nodes-cobaltnamespace-datananopagemorsing-loggernode-injector@thismr/bitmindtest-core@sum.cumo/imagemin-merlin@qfast/country-region-data@uk/tool@nodox/gatsby@sidneys/electron-build@stagas/documentation-forkalisselisss-lab3wechat-formdatawed_developerwebql-codegen-visitor-plugin-commonwebql-codegen-near-operation-file-presetway2web-buildwc-starterkitwcjs-prebuiltwlepinski-laravel-elixirwlion-laravel-elixirxdms3wow.js-juzizyl3.0.0@brucearmstrong/sass-librarylayui-customdfeuk-frontenddfeuk-frontend-manualppalka-sprityprimeng-custompermalinkspath-segmentspeter.you.jqweui.test.publishpure-spritystrings-parser-pathsyncano-gatsbytatsy-loggertemplate-loaderswig-stylebundler-loaderthecsea-laravel-elixirtemplateowt-client-javascriptquick-slurp
1.0.2

6 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.6.3

9 years ago

0.6.2

9 years ago

0.6.1

9 years ago

0.6.0

9 years ago

0.5.0

10 years ago

0.4.1

10 years ago

0.4.0

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago