npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

entry-points

1.2.1

@juliangruber

npmHomeRepoSnykSocket
Downloads:247
$ npm install entry-points
DailyWeeklyMonthlyYearly

entry-points

Find a node module's possible entry points, like it's main script and bin scripts.

build status

Example

var find = require('entry-points');

find(__dirname, function(err, entries){
  console.log(entries);
  // ['index.js', 'bin/foo']
});

There's also a cli for quick inspection:

$ npm install -g entry-points
$ entry-points
index.js
bin/foo

Installation

$ npm install entry-points

License

MIT