Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@coffeekraken/s-code-formatter
Advanced tools
Base class to be used to create code formatters like the @coffeekraken/s-code-formatter-prettier.
Base class to be used to create code formatters like the @coffeekraken/s-code-formatter-prettier.
npm i @coffeekraken/s-code-formatter
This package expose a simple SBuilder
class that is meant to be extended for each builder you want to create.
For now, this class is the main one used in builders like:
This simple base class gives you some features like:
build
method that accepts a params
object which reflect your interface_build
method that will be called with your resolved params
objectHere's a simple example of a custom builder:
import SBuilder from '@coffeekraken/s-builder';
import SPromise from '@coffeekraken/s-promise';
class MyBuilder extends SBuilder {
constructor(settings = {}) {
super(settings);
}
_build(params, settings) {
return new SPromise(({ resolve, reject, emit }) => {
// compilation logic
});
}
}
Distributed under the MIT License. See LICENSE for more information.
Here's all the ways you can contact us listed:
FAQs
Base class to be used to create code formatters like the @coffeekraken/s-code-formatter-prettier.
The npm package @coffeekraken/s-code-formatter receives a total of 0 weekly downloads. As such, @coffeekraken/s-code-formatter popularity was classified as not popular.
We found that @coffeekraken/s-code-formatter 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.