Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
babel-plugin-add-header-comment
Advanced tools
Will add a header comment (such as license, version info, etc.) to the start of the transpiled code
Will add a comment to the start of the transpiled code. Since transpiling via Babel is becoming one of the last steps of the build process it's handy to add some tooling around this final step. For instance could be used:
$ npm install babel-plugin-add-header-comment
The following is an example .babelrc
file. Using the following settings the comment will be created using 3 different features:
"This string will be inserted in"
)node executeThisOutputAddedToHeader.js
)readInTheContentsOfThisFile.txt
){
"presets": ["es2015"],
"plugins": [
["add-header-comment", {
"header": [
"This string will be inserted in a comment header",
"!node executeThisOutputAddedToHeader.js",
"?readInTheContentsOfThisFile.txt"
]
}]
]
}
Sometimes you may want to just add headers to specific files. In this case you can do the following:
{
"presets": ["es2015"],
"plugins": [
["add-header-comment", {
"files": {
"src/index.js": {
"header": [
"This string will be inserted in a comment header"
]
}
}
}]
]
}
newLineChar
- This is the newline char that should be used by the plugin. Default value: '\n'
cache
- This is a string which represents what type of operations should be cached. For instance if you wanted to cache both read and command executions you could pass in ?!
. Default value: '?'
commentStart
- This is a string which describes how the comment is started/opened. For instance if you'd like you're comment to start with /*COMMENT START
pass in 'COMMENT START'
. Default value: '*\n'
commentEnd
- This is a string which describes how the comment is ended/closed. For example if you'd like your comment to end with COMMENT END*/
pass in 'COMMENT END'
. Default value: '\n*'
commentLineStart
- A string which is the leading charachter before a comment. Default value: '* '
MIT, see LICENSE.md for details.
FAQs
Will add a header comment (such as license, version info, etc.) to the start of the transpiled code
The npm package babel-plugin-add-header-comment receives a total of 3,750 weekly downloads. As such, babel-plugin-add-header-comment popularity was classified as popular.
We found that babel-plugin-add-header-comment 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.