Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
blogfoster-scripts
Advanced tools
Single-command, zero-config tooling for Node.js projects
blogfoster-scripts
is a thin wrapper around some of our favorite JavaScript tools. It unifies developer experience across multiple Node.js projects by hiding other tools and their configs. A minimal CLI with subcommands like lint
, format
, and build
lets us manage tooling for multiple projects much easier. Also, developers don't need to waste time by copy-pasting boilerplate code around just to get tooling working (see this blog post).
We recommend installing blogfoster-scripts
locally in your Node.js project with npm i --save-dev blogfoster-scripts
.
After that, you can use it with npx
or by defining scripts in your package.json
:
{
"scripts": {
"lint": "blogfoster-scripts lint",
"format": "blogfoster-scripts format",
"build": "blogfoster-scripts build"
}
}
blogfoster-scripts lint
Check your code for linting issues with ESLint and fix all (fixable) issues.
blogfoster-scripts lint --check
By default, blogfoster-scripts lint
will try to fix any fixable linting issues. With the --check
argument it will only check your code for issues and exit with a non-zero exit code if there are any.
blogfoster-scripts format
Check your code for formatting issues with Prettier and fix all (fixable) issues.
blogfoster-scripts format --check
By default, blogfoster-scripts format
will try to fix any fixable formatting issues. With the --check
argument it will only check your code for issues and exit with a non-zero exit code if there are any.
blogfoster-scripts build
Compile JavaScript starting off from src/index.js
file, copy static assets from assets
folder and package everything into the build
folder with Webpack and Babel.
MIT
FAQs
> Single-command, zero-config tooling for Node.js projects
The npm package blogfoster-scripts receives a total of 0 weekly downloads. As such, blogfoster-scripts popularity was classified as not popular.
We found that blogfoster-scripts 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.