
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.
@tsofist/web-buddy
Advanced tools
Configuration basics for Linters, TypeScript, Semantic Release and others
This is a set of pre-configured configurations for quickly starting web projects of the JS family. You can simply clone this repository, make the necessary changes, and easily connect it to your projects.
Thus, all projects using this repository will have uniform settings for styling, building, and other things. Exceptions can always be localized in the package.json file of a specific project.
Your project may differ significantly from the configurations collected in this repository, so you can simply fork this project and make your own changes. Alternatively, you can use this repository as a sample for creating your own.
All specified configurations are easily extensible, so simply use the configuration extension, for example in package.json:
{
"scripts": {
"prepare": "husky && (cp node_modules/@tsofist/web-buddy/.editorconfig \"$INIT_CWD\" || true)"
},
"prettier": "./node_modules/@tsofist/web-buddy/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@tsofist/web-buddy/.stylelintrc.yaml"
},
"eslintConfig": {
"root": true,
"extends": [
"./node_modules/@tsofist/web-buddy/.eslintrc.yaml"
]
},
"release": {
"extends": [
"@tsofist/web-buddy/.releaserc.json"
]
}
}
Or for extra strictness:
{
"eslintConfig": {
"root": true,
"extends": [
"./node_modules/@tsofist/web-buddy/.eslintrc.yaml",
"./node_modules/@tsofist/web-buddy/eslint/stricter.extends.yaml"
]
}
}
FAQs
Configuration basics for Linters, TypeScript, Semantic Release and others
The npm package @tsofist/web-buddy receives a total of 5 weekly downloads. As such, @tsofist/web-buddy popularity was classified as not popular.
We found that @tsofist/web-buddy 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.

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.