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.
@taktikorg/ea-modi-nesciunt
Advanced tools
Useful directory walker
npm i @taktikorg/ea-modi-nesciunt
let walkOptions={//these are default values
//scan depth, minimal value is 1
depth:Infinity,
//exclude sub-path in posix format, e.g. 'a/b/c'
exclude:[],
//call async callback function in parallel (not wait them before the walker ends)
//not working in async generator mode
asyncCallbackInParallel:false,//can be a number for max parallel tasks
//file type filter
types:['File','Directory','BlockDevice','CharacterDevice','FIFO','Socket','SymbolicLink'],
//use Stats object instead of Dirent object in callback info
withStats:false,
//define a function that will be called on each sub-directory, if not return true, this directory will not be processed. (include the input dir)
onDirectory:dir=>{return true},
}
walkOptions.withStats
is true, this will be a Stats object, otherwise this will be a Dirent Object. Additional properties are:
walkOptions.types
.Parameters are the same as callback's.
There are two modes you can use: callback mode
and async generator mode
. With async generator mode
, you can break at where you want in for await
.
const {walkFilter}=require('@taktikorg/ea-modi-nesciunt');
walkFilter(__dirname+'/..', (subDir,info)=>{//filter function
if(info.size > 2048)return true;//filter file whose size > 2048 Bytes
}, (subDir, info)=>{//callback
console.log(info.type, '\t', subDir, info.name, info.size);
}, {//options
withStats:true,//use Stats object so we can get file size for filter
depth:2,//limit scan depth to 2
exclude:['.git'],//ignore '.git' directory and its children
types:['File','Directory'],
});
//The filter can be a REGEXP
walkFilter(__dirname+'/..',
/.+\.js$/,//matcher
(subDir, info)=>{//callback
console.log(info.type, '\t', subDir, info.name, info.size);
},
{//options
withStats:true,//use Stats object so we can get file size for filter
depth:2,//limit scan depth to 2
exclude:['.git'],//ignore '.git' directory and its children
types:['File','Directory'],
}
);
const {walkFilterGenerator}=require('@taktikorg/ea-modi-nesciunt');
(async ()=>{
//get the generator
let gen=walkFilterGenerator(__dirname+'/..', info=>{//filter function
if(info.size > 2048)return true;//filter file whose size > 2048 Bytes
}, {//options example
withStats:true,//use Stats object so we can get file size for filter
});
//use 'for await' for async generator and you can break at where you want
for await(let [subDir,info] of gen){
console.log(info.type,'\t', subDir, info.name);
if(info.name === 'poi')break;//break when find a file named 'poi'
}
})();
const {walkFilter}=require('@taktikorg/ea-modi-nesciunt');
walkFilter(__dirname+'/..', info=>{
if(info.size > 2048)return true;//get file which size > 2048 Bytes
},async (subDir,info)=>{
return new Promise((ok,fail)=>{
setTimeout(()=>{//set a random timout,in parallel mode the log will print in random order
console.log(info.type, '\t', subDir, info.name, info.size);
ok();
},5000*Math.random());
})
},{
withStats:true,//use Stats object so we can get file size for filter
asyncCallbackInParallel:4,//run 4 tasks at the same time
});
FAQs
Useful directory walker
The npm package @taktikorg/ea-modi-nesciunt receives a total of 0 weekly downloads. As such, @taktikorg/ea-modi-nesciunt popularity was classified as not popular.
We found that @taktikorg/ea-modi-nesciunt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.