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.
@makechtec/tezcatl-cli
Advanced tools
This module is a low level API, which is used to interact with the command line arguments. And with some file actions.
This module is a low level API, which is used to interact with the command line arguments. And with some file actions.
$ npm install @makechtec/tezcatl-cli
export class Argument{
constructor(name, value){
this.name = name;
this.value = value;
}
}
export const ARGUMENT_FLAG = "--";
testStart(search, target) : booelean
chek if the target starts with the search
testArg(search, target) : boolean
check if the target is an argument with the search as name
testIsArg(target) : boolean
check if the target is an argument
testFlag(target) : boolean
check if the target is a flag
testHasDirectory(target) : boolean
check if the target path contains a directory
replacePlaceholder(content, placeholder) : string
replace the placeholder name in all matches inside the content with the value of the placeholder
countMatches(str, pattern) : number
count the number of matches of the pattern in the string
readTemplate(templateName) : string
Alias of read
read(templateName) : string
read the template file
changePlaceholders(content, placeholders) : string
replace the placeholder name in all matches inside the content with the value of the placeholder for each item in the placeholders array
writeFile(fileName, content) : void
create or overwrite the file with the content
createDirectory(dirName) : void
create the directory
insertInLine(fileName, lineNumber, text) : void
insert the text in the line number of the file
getArgumentValue(name, params = argv) : Argument
read the argument from the command line, it must be the form:
name=value
the result is an instance of the Argument class
getArgumentsGroup(prefix, params = argv) : Argument[]
read the arguments from the command line, it must be the form:
prefix1=value1 prefix2=value2 prefix3=value3
the result is an array of instances of the Argument class
getFlagsGroup(params = argv) : Argument[]
read the flags from the command line, it must be the form:
--flag1 --flag2 --flag3
the result is an array of instances of the Argument class, the value is true.
isFlag: (name, params = argv) : boolean
check if the flag is present in the command line
getAllArguments: function(params = argv) : Argument[]
read all arguments ignoring the flags. the result is an array of instances of the Argument class
FAQs
This module is a low level API, which is used to interact with the command line arguments. And with some file actions.
The npm package @makechtec/tezcatl-cli receives a total of 14 weekly downloads. As such, @makechtec/tezcatl-cli popularity was classified as not popular.
We found that @makechtec/tezcatl-cli 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.