
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
I don't use atom for a while... like 2years and i don't have time to maintain this repository. If someone wants to be involved, just drop me an email.
Add interaction to gulp tasks.
Options:
This method will allow the pipe to continue if the user input is true, otherwise, it will be terminated.
Default usage:
gulp.src('test.js')
.pipe(prompt.confirm())
.pipe(gulp.dest('dest'));
If a string is provided to the options, it will be set as the message:
gulp.src('test.js')
.pipe(prompt.confirm('Are you ready for Gulp?'))
.pipe(gulp.dest('dest'));
Example when using options:
gulp.src('test.js')
.pipe(prompt.confirm({
message: 'Continue?',
default: true
}))
.pipe(gulp.dest('dest'));
This is a clean pass-through function for gulp to utilize the full Inquirer.js Library, please refer to them for documentation on corresponding parameters.
Please note that all types are avaiable, not just the examples below.
Example Input:
gulp.src('test.js')
.pipe(prompt.prompt({
type: 'input',
name: 'task',
message: 'Which task would you like to run?'
}, function(res){
//value is in res.task (the name option gives the key)
}));
Example Checkbox:
gulp.src('test.js')
.pipe(prompt.prompt({
type: 'checkbox',
name: 'bump',
message: 'What type of bump would you like to do?',
choices: ['patch', 'minor', 'major']
}, function(res){
//value is in res.bump (as an array)
}));
Example Password:
gulp.src('test.js')
.pipe(prompt.prompt({
type: 'password',
name: 'pass',
message: 'Please enter your password'
}, function(res){
//value is in res.pass
}));
Example Multiple:
gulp.src('test.js')
.pipe(prompt.prompt([{
type: 'input',
name: 'first',
message: 'First question?'
},
{
type: 'input',
name: 'second',
message: 'Second question?'
}], function(res){
//value is in res.first and res.second
}));
Example Validation:
gulp.src('test.js')
.pipe(prompt.prompt({
type: 'password',
name: 'pass',
message: 'Please enter your password',
validate: function(pass){
if(pass !== '123456'){
return false;
}
return true;
}
}, function(res){
//value is in res.pass
}));
FAQs
Updated fork of gulp-prompt with more recent inquirer.js
The npm package prompt-sui receives a total of 9,232 weekly downloads. As such, prompt-sui popularity was classified as popular.
We found that prompt-sui 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.