Gathering detailed insights and metrics for gulplog
Gathering detailed insights and metrics for gulplog
Gathering detailed insights and metrics for gulplog
Gathering detailed insights and metrics for gulplog
npm install gulplog
Typescript
Module System
Min. Node Version
Node Version
NPM Version
99.5
Supply Chain
95.9
Quality
77.7
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
648,228,614
Last Day
113,136
Last Week
1,821,082
Last Month
7,631,822
Last Year
86,021,074
MIT License
57 Stars
29 Commits
10 Forks
5 Watchers
1 Branches
6 Contributors
Updated on Jun 26, 2025
Minified
Minified + Gzipped
Latest Version
2.2.0
Package Id
gulplog@2.2.0
Unpacked Size
6.48 kB
Size
2.35 kB
File Count
5
NPM Version
9.8.0
Node Version
20.5.0
Published on
Mar 23, 2024
Cumulative downloads
Total Downloads
Last Day
31.5%
113,136
Compared to previous day
Last Week
-2.8%
1,821,082
Compared to previous week
Last Month
3.2%
7,631,822
Compared to previous month
Last Year
10.4%
86,021,074
Compared to previous year
1
6
Logger for gulp and gulp plugins
1var logger = require('gulplog'); 2 3// logs strings 4logger.debug('The MOST verbose!'); 5logger.info('Some important info'); 6logger.warn('All the warnings to you'); 7logger.error('OH NO! SOMETHING HAPPENED!'); 8 9// supports util.format! 10logger.info('%s style!', 'printf'); 11 12// log anything 13logger.debug({ my: 'obj' }); 14logger.info([1, 2, 3]);
Logging (and level of logging) is controlled by gulp-cli
Highest log level. Typically used for debugging purposes.
If the first argument is a string, all arguments are passed to node's
util.format()
before being emitted.
If the first argument is not a string, all arguments will be emitted directly.
Standard log level. Typically used for user information.
If the first argument is a string, all arguments are passed to node's
util.format()
before being emitted.
If the first argument is not a string, all arguments will be emitted directly.
Warning log level. Typically used for warnings.
If the first argument is a string, all arguments are passed to node's
util.format()
before being emitted.
If the first argument is not a string, all arguments will be emitted directly.
Error log level. Typically used when things went horribly wrong.
If the first argument is a string, all arguments are passed to node's
util.format()
before being emitted.
If the first argument is not a string, all arguments will be emitted directly.
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 5/25 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-23
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More