
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.
gulp-message
Advanced tools
Emit clean, readable log messages from gulp tasks
npm install --save gulp-message
Javascript:
const message = require('gulp-message');
Typescript / ES6:
import * as message from 'gulp-message';
Types are bundled with the published package and will be automatically imported.
gulp.task('foo', () => {
message.warn(`Well that's not quite right...`);
});
message.error(string)Emit an error message.
message.warn(string)Emit an warning message.
message.info(string)Emit an info message.
message.debug(string)Emit an debug message.
logger(opts)Create a custom log emitter.
| Option | Description | Default |
|---|---|---|
| prefix | A prefix to append to all outgoing messages - either a string, or [string, style] tuple | '' |
| style | The style to apply to the message body | none |
| writer | The log message emitter | gutil.log |
Example:
const tableFlip = message.logger({
prefix: '(ノಠ益ಠ)ノ彡┻━┻'
})
tableFlip('Breath in, breath out.')
=> '(ノಠ益ಠ)ノ彡┻━┻ Breathe in, breathe out.'
FAQs
Emit clean, readable log messages from gulp tasks
We found that gulp-message 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
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.