Import Holmes is a tool to inspect Javascript/Typescript projects imports
Warning this tool isn't in a stable version and can change at any moment, check issues page to check futures features and current problems
brew tap pmqueiroz/tap
brew install import-holmes
Options | Default | Meaning | Example |
---|---|---|---|
-m , --module |
package.json.dependencies |
Filter inspection by module's name | -m a,b |
-s , --specifiers |
- | Filter inspection by specifiers name | -s Button,Text |
-g , --glob |
**/*.{ts,tsx} |
Glob to select files to inspect | -g components/*.{js} |
-o , --output |
table |
Configure the output type | -o json |
--sort |
none |
Sort the output by ocurrences or referenced |
--sort referenced |
For better configuring you can also set a config file named .holmesrc.json
following this pattern:
// .holmesrc.json
{
"$schema": "https://raw.githubusercontent.com/pmqueiroz/import-holmes/main/schema.json",
"module": ["some-module"],
"specifiers": ["first", "second"],
"include": ["**/*.{ts,tsx}"],
"exclude": ["node_modules/**", "**/*.{spec,test}.{ts,tsx}", "**/*.d.ts"],
"sortStrategy": "referenced",
"output": "json"
}
use inspect_core::{inspect_module};
use std::fs;
fn main() {
let module = fs::read_to_string("index.js").expect("File does not exits");
let inspect: inspect_core::Inspect = inspect_module(&module);
println!("{:#?}", inspect)
}
Made with ❤️ by Peam