
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@httpie/tsconfig
Advanced tools
Shared TypeScript config for Httpie projects
Follow @eldorplus and @httpiejs for updates!
npm i -D @httpie/tsconfig
| Major Release | Node.js version |
|---|---|
3.x | 14.x |
2.x | 12.x |
1.x | 8.x |
Create a tsconfig.json file in your project and extends the @httpie/tsconfig TypeScript config:
When installed, configure your tsconfig.json like this:
{
"extends": "@httpie/tsconfig",
"compilerOptions": {
"outDir": "dist"
}
}
You can refine your tsconfig.json to your needs. Let’s say you want to target Node.js v14 instead of v12 (which is the default). Change your compilerOptions to this:
{
"extends": "@httpie/tsconfig",
"display": "Node 14",
"compilerOptions": {
"outDir": "dist",
"lib": ["es2020"],
"target": "es2020",
}
}
Customizing your compilerOptions when extending the @httpie/tsconfig package only overrides the listed properties. Every other option defined in the base configuration will be inherited.
git checkout -b my-featuregit commit -am 'Add some feature'git push origin my-new-featureMIT © Httpie
httpiejs.com · GitLab @httpie · Twitter @httpiejs
FAQs
Shareable TypeScript config
We found that @httpie/tsconfig 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.