
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
prompt-rawlist
Advanced tools
Rawlist prompt. Can be used as a standalone prompt, or with a prompt system like [Enquirer].
Rawlist prompt. Can be used as a standalone prompt, or with a prompt system like Enquirer.
Install with npm:
$ npm install --save prompt-rawlist
var RawList = require('prompt-rawlist');
var prompt = new RawList({
name: 'colors',
message: 'Favorite flavor?',
choices: [
'chocolate',
'strawberry',
'vanilla'
]
});
// async
prompt.ask(function(answer) {
console.log(answer);
// chocolate
});
// promise
prompt.run()
.then(function(answer) {
console.log(answer);
// chocolate
});
Register as a plugin with enquirer:
var Enquirer = require('enquirer');
var enquirer = new Enquirer();
enquirer.register('rawlist', require('prompt-rawlist'));
Define questions using a declarative style, similar to Inquirer.
var questions = [
{
type: 'rawlist',
name: 'dinner',
message: 'What would you like to do?',
choices: [
'Order a pizza',
'Make a reservation',
enquirer.separator(),,
'Ask opening hours',
'Talk to the receptionist'
]
},
{
type: 'rawlist',
name: 'size',
message: 'What size would you like?',
choices: ['Jumbo', 'Large', 'Standard', 'Medium', 'Small', 'Micro']
}
];
enquirer.ask(questions)
.then(function (answers) {
console.log(answers);
});
Register questions using enquirer's .question
method:
enquirer.question('dinner', {
type: 'rawlist',
message: 'What would you like to do?',
choices: [
'Order a pizza',
'Make a reservation',
enquirer.separator(),
'Ask opening hours',
'Talk to the receptionist'
]
});
enquirer.question('size', 'What size would you like?', {
type: 'rawlist',
choices: ['Jumbo', 'Large', 'Standard', 'Medium', 'Small', 'Micro']
});
enquirer.ask(['dinner', 'size'])
.then(function (answers) {
console.log(answers);
//=> { dinner: 'Order a pizza', size: 'Large' }
});
Originally based on the rawlist
prompt in inquirer.
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on June 04, 2017.
FAQs
Rawlist prompt. Can be used as a standalone prompt, or with a prompt system like [Enquirer].
We found that prompt-rawlist 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.