vibe-stocks
Version:
Terminal-based stock market viewer with real-time data streaming
11 lines (10 loc) • 381 B
JavaScript
const chalk = require('chalk');
module.exports = {
run: (options) => {
console.log(chalk.cyan.bold('S&P 500 Tracker'));
console.log(chalk.yellow('This feature requires the full version.'));
console.log(chalk.gray('\nFor now, try:'));
console.log(chalk.gray(' $ vibe-stocks market'));
console.log(chalk.gray(' $ vibe-stocks stream SPY QQQ DIA IWM'));
}
};