Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@putout/engine-processor
Advanced tools
🐊Putout processor that runs all engines according to supported file types.
npm i @putout/engine-processor
const {
getProcessorRunners,
runProcessors,
} = require('@putout/engine-processor');
const processorRunners = await getProcessorRunners(processors);
const optionalLoader = async (a) => await import(a);
await getProcessorRunners(processors, optionalLoader);
await runProcessors({
name,
process,
options,
rawSource,
index,
length,
processorRunners, // optional
load, // when you need to override 'import()'
});
// returns
({
isProcessed,
places,
processedSource,
});
Simplest possible processor example can be written in both CommonJS or ESM and look like this:
export const files = ['*.js'];
export const find = (source) => {
return places;
};
export const fix = (source) => {
return `modified ${source}`;
};
export const branch = (source) => {
return [{
source,
startLine: 0,
}];
};
export const merge = (source, list) => {
return list[0];
};
Instead of find
and fix
you can export lint
:
import eslint from '@putout/eslint';
export const files = ['*.js'];
export const lint = async (source, {fix}) => {
const [code, places] = await eslint(source, {
fix,
});
return [code, places];
};
MIT
MIT
FAQs
🐊Putout engine processor runner
We found that @putout/engine-processor 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.