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.
a simple minifier for for es+ code
Just a little wrapper around babili
$ npm install --global esmall
$ esmall input.js // output to stdout
$ esmall input.js -o output.min.js // output to file
$ cat path/to/file.js | esmall > this-works.min.js
var Esmall = require('esmall');
var esmall = new Esmall({
// put babili options here
});
var minified = esmall.minify('code');
var fs = require('fs');
var Esmall = require('esmall');
var esmall = new Esmall({
// put babili options here
});
fs.createReadStream('path/to/file.js')
.pipe(esmall)
.pipe(process.stdout);
I know 🎉
Apache v2.0
FAQs
Pretty Naive
The npm package esmall receives a total of 9 weekly downloads. As such, esmall popularity was classified as not popular.
We found that esmall demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.