
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@awsless/clui
Advanced tools
The @awsless/clui package combines a couple of useful npm packages to create easy to use & beautiful terminal applications.
The @awsless/clui package combines a couple of useful npm packages to create easy to use & beautiful terminal applications.
Special thanks to:
Install with (NPM):
npm i @awsless/clui
import { log, prompt, color } from '@awsless/clui';
log.intro(color.blue.bold('Create a blog post'))
const title = await prompt.text({ message: 'Title:' })
const message = await prompt.text({ message: 'Message:' })
log.list('Preview post', {
title,
message,
})
const ok = await prompt.confirm({ message: 'Are you sure?' })
if(!ok) {
log.error('Canceled')
return
}
await log.task({
initialMessage: 'Creating post...',
successMessage: 'You blog post was successfully created!',
async task() {
// Create your blog post
}
})
log.outro('The end!')
MIT
FAQs
The @awsless/clui package combines a couple of useful npm packages to create easy to use & beautiful terminal applications.
We found that @awsless/clui demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.