Socket
Socket
Sign inDemoInstall

pure-index

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pure-index

some description


Version published
Weekly downloads
9
decreased by-59.09%
Maintainers
1
Weekly downloads
 
Created
Source

🌿 Pure Index

Pure Index is utility for monorepos. It helps to find unused exports from packages.

Motivation

There is a package a which exports 2 functions

// "a" package index.ts file

export const T = () => true

export { myFn } from './myFn'

only 1 function from the package is used in the project

// some file

import { T } from 'a'

This means that package a exports myFn for nothing, so we can remove its export and possibly remove all the code. As the code base develops, a large number of such unnecessary exports may accumulate in the monorepo. Pure Index allows you to find such exports.

Usage

  1. Install
npm install --save-dev pure-index
  1. Add the check-exports script in the package.json of each package that needs to be checked
    "scripts": {
      "build": "webpack ./webpack.config.js",
+     "check-exports": "pure-index",
      "test": "vitest"
    }
  1. Configure

Config

Pure Index supports two ways to define config.

  1. .pure-index.json config file:
{
  "entry": "index.ts",
  "exclude": ["node_modules"],
  "babelPlugins": ["typescript"],
  "batch": {
    "default": 100
  }
}
  1. or pure-index section in package.json:
  "pure-index": {
    "entry": "index.ts",
    "exclude": ["node_modules"],
    "babelPlugins": ["typescript"],
    "batch": {
      "default": 100
    }
  }

Arguments

  • entry (String) — path to the package index file. relative to the package directory.
  • exclude (Array<string>) — list of directories that will be excluded when searching for imports.
  • babelPlugins (Array<string>) — list of babel plugins that will be used when parsing files.
  • batch.default (Number) — number of files to be traversed in parallel. changing the value may speed up or slow down the script. choose the value yourself.

Explanation

How It Works

In fact, the task is to compare all exports and imports of the package. Anything not imported but exported are unused exports.

Base algorithm:
  1. collect all package exports into exports Set
  2. traverse all files where package import may occur
  3. if import is found, remove it from exports Set
  4. if the size of exports exports Set became equal to 0, then exit with success
  5. if exports Set size is not equal to 0, then exit with an error

How It Optimized

  1. file reading is divided into batches
  2. file is not immediately converted to AST. First the import of the package is searched for in the file. createReadStream is used
  3. there is an instant exit with success as soon as the size of exports Set is equal to zero

Keywords

FAQs

Package last updated on 26 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc