DevYK 8466310f0c update README.md 3 лет назад
..
.npmignore 8466310f0c update README.md 3 лет назад
.travis.yml 8466310f0c update README.md 3 лет назад
LICENSE 8466310f0c update README.md 3 лет назад
README.md 8466310f0c update README.md 3 лет назад
index.js 8466310f0c update README.md 3 лет назад
package.json 8466310f0c update README.md 3 лет назад
test.js 8466310f0c update README.md 3 лет назад

README.md

module-details-from-path

Extract the Node.js module details like name and base path given an absolute path to a file inside the module.

Build status js-standard-style

Installation

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

Usage

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

var 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