New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@korautils/alias-fixer

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@korautils/alias-fixer

A development utility to automatically fix relative imports by replacing them with path aliases defined in your tsconfig.json. Ideal for streamlining large codebases with consistent import paths.

  • 1.0.8
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@korautils/alias-fixer

@korautils/alias-fixer is a development library designed to automatically fix relative imports in JavaScript/TypeScript projects by replacing them with module alias imports defined in the tsconfig.json file. This helps maintain cleaner and more organized code, using alias paths instead of cumbersome relative paths.

Installation

To install the library, simply add it as a development dependency in your project:

npm install --save-dev @korautils/alias-fixer

Features

  • Relative imports replacement: Detects and replaces relative imports with aliases defined in the tsconfig.json file.
  • Support for multiple file types: Can be configured to work with .ts, .tsx, .js, .jsx, and other file types.
  • Exclude folders: Allows excluding certain folders or files from the search and replacement (e.g., node_modules).
  • Custom alias support: Works with any aliases configured in the tsconfig.json under the compilerOptions.paths property.

Usage

  1. Configure your tsconfig.json file: Ensure that your project has a tsconfig.json file with module aliases set under the compilerOptions.paths property.

Example tsconfig.json:

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["src/*"]
    }
  }
}
  1. Run the library: Once installed, you can run @korautils/alias-fixer from the command line to fix imports in your project.
npx @korautils/alias-fixer --dir=./src --types=ts,tsx,jsx,js
  • --dir: Specifies the directory where the files will be searched. (Default is ./).
  • --types: List of file extensions to process (Default is ts,tsx,jsx,js).

Example

If you have a file with a relative import:

import { EMAIL_REGEX } from '../../../../constants';

After running the library, it will be updated to:

import { EMAIL_REGEX } from '@/modules/core/constants';

🐛 Bug Reports

If you encounter any bugs or issues while using the library, please report them using one of the following methods:

  • Email: Send a detailed bug report to jhonjaider100015@gmail.com.
  • Issue Tracker: If you have been provided access to the private issue tracker, you can submit your bug report directly there.

Please include as much detail as possible, including:

  • Steps to reproduce the issue.
  • Expected and actual behavior.
  • Environment details (e.g., operating system, library version).

Keywords

FAQs

Package last updated on 01 Dec 2024

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