
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
The end-to-end solution for configuring, refactoring, maintaining and using path aliases
The end-to-end solution for configuring, refactoring, maintaining and using path aliases
   
Path "aliases" are special identifiers (starting with @ or ~ ) that point to specific folders.
Using them in your codebase makes your imports easier to read and maintain:
// from this
import { fooify } from '../../../core/services/foo' 
// to this
import { fooify } from '@services/foo' 
They are widely supported in the JavaScript ecosystem, however:
Alias HQ is build-time tool which:
ts/jsconfig.json as the single source of configurationBegin by configuring aliases in your project's ts/jsconfig.json:
{
  "compilerOptions": {
    "baseUrl": "src",
    "paths": {
      "@packages/*": [ "../packages/*" ],
      "@/*": [ "/*" ],
      "@app/*": [ "/app/*" ],
      "@services/*": [ "/app/services/*" ]
    }
  }
}
Use the API to sync your toolchain, frameworks, even your IDE:
// webpack.config.js
config.resolve.alias = hq.get('webpack')
// jest.config.js
config.moduleNameMapper = hq.get('jest')
// etc...
Use the CLI to migrate or maintain your source code:
? What do you want to do?
  - Configure paths
  - Setup integrations
❯ - Update source code
  - Help
  - Exit
For a list of all supported frameworks, see the integrations doc.
If you are already using aliases:
If you are thinking about using aliases:
You can configure and migrate any project in less than a minute by:
Install via your package manager of choice:
npm i --save-dev alias-hq
yarn add -D alias-hq
To jump in without much reading:
For step-by-step instructions:
For a short video:
Wanna support the project?
FAQs
The end-to-end solution for configuring, refactoring, maintaining and using path aliases
We found that alias-hq demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.