Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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 healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.