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.
updatable-log
Advanced tools
pretty logger with the ability to update lines in place
const log = require('updatable-log');
const chalk = require('chalk');
const delay = require('delay');
async function exampleApp({ quiet }) {
// ignore everything except log.important() and log.error()
log.quiet = quiet;
log.info(chalk.green('E X A M P L E - A P P'));
log.info('v1.2.0');
for (let page = 0; page < 40; page++) {
await fetchData(page);
}
log.clear();
console.log('call log.clear() before printing with the built-in console.log()');
try {
printResult();
} catch (e) {
log.error(e);
}
}
async function fetchData(page) {
log.update('fetching data from:', `http://get-data.com?page=${page}`);
await delay(100);
if (page === 10) {
log.warn('invalid data, skipping page', page);
}
}
function printResult() {
log.important(
JSON.stringify(
{
age: 6,
name: 'Ender Wiggin',
},
null,
2
)
);
this.will.throw.a.null.pointer.exception();
}
To run this example yourself:
git clone https://github.com/noahsug/updatable-log.git
cd updatable-log
npm i
npm run example
FAQs
pretty logger with the ability to update lines in place
The npm package updatable-log receives a total of 36,126 weekly downloads. As such, updatable-log popularity was classified as popular.
We found that updatable-log 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
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.