Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
slow cat your files or raw string to stdout
npm install co-scat
scat -h
Usage: scat [options]
Options:
-h, --help output usage information
-V, --version output the version number
-s, --sps <sps> strings per second
Report bugs to <jeremial90@gmail.com>
% scat -s 20 a.txt b.txt
When use scat
as cli, there's no need to install co
, but when use scat
as
dependence, you should install co
by your self
var scat = require('co-scat')
, scatFile = scat.scatFile
, scatString = scat.scatString
, co = require('co')
;
// slow cat file
co(scatFile)('a.txt', 20);
// or slow cat raw string
co(scatString)('raw string to output', 10);
// or use in other functions
co(function *(){
yield scatFile('../index.js', 30);
})();
MIT
FAQs
slow cat use co
We found that co-scat 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.