0.0.6-beta • Published 6 years ago

unused-exports v0.0.6-beta

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

Build Status npm version

unused-exports

Tries to find javascript module named exports that are not being used by other javascript modules.

How it works and how you should use it

It will recursively list all js files under a path, and by comparing required modules with module.exports it tries to find unused exports.

This method has several limitations but still might help you finding dead or poorly maintained code in big projects.

You should manually confirm the results before removing any code.

Install

npm i -g unused-exports

How to use

There are only 2 options, path and ignore.

unused-exports --path ./src --ignore node_modules/

Troubleshooting basics

If you have weird/weak results please try it with DEBUG=unused-exports:* unused-exports ... etc.

Testing

npm run test or npm run demo

Contributing

Contributions will be highly appreciated.

Feel free to open any issues on any related matter.

LICENSE

Code released under the MIT license.