module-details-from-path
Resolve npm package details, like name and base path, given an absolute path to a file inside a package
Last updated a year ago by watson .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install module-details-from-path 
SYNC missed versions from official npm registry.

module-details-from-path

Resolve npm package details, like name and base path, given an absolute path to a file inside a package.

js-standard-style

Installation

npm install module-details-from-path --save

Usage

const assert = require('assert')
const parse = require('module-details-from-path')

const path = '/Users/watson/code/node_modules/blackjack/node_modules/picture-tube/bin/tube.js'

assert.deepStrictEqual(parse(path), {
  name: 'picture-tube',
  basedir: '/Users/watson/code/node_modules/blackjack/node_modules/picture-tube',
  path: 'bin/tube.js'
})

Returns undefined if module details cannot be found.

License

MIT

Current Tags

  • 1.0.4                                ...           latest (a year ago)

5 Versions

  • 1.0.4                                ...           a year ago
  • 1.0.3                                ...           10 years ago
  • 1.0.2                                ...           10 years ago
  • 1.0.1                                ...           10 years ago
  • 1.0.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 2
Last Day 0
Last Week 4
Last Month 7
Dependencies (0)
None
Dev Dependencies (3)

Copyright 2013 - present © cnpmjs.org | Home |