
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.
verboselog was written as a solution to view entire objects or arrays in the console in js. It is a very simple package that you can write your self, but I got sick of writing it so I made it an npm package. Feel free to use your self.
npm install verboselog
deelog(data, message)
the first argument is the data you want logged, second is an optional string message you want to connect with data being logged.
var data = {
test1: "test1",
test2: {
a:"a",
b:"b",
c:"c",,
d: {
d:"d"
}
}
},
test3: [ [ 'a', 'b'], 'a', [ ['a', 'b',], ['a', 'b'] ], ]
}
console.log('here is your data', data)
here is your data { test1: 'test1',
test2: { a: 'a', b: 'b', c: 'c', d: { d: 'd' } },
test3: [ [ 'a', 'b' ], 'a', [ [Array], [Array] ] ] }
verboselog(data, 'here is your data')
here is your data
{ test1: 'test1',
test2: { a: 'a', b: 'b', c: 'c', d: { d: 'd' } },
test3:
[ [ 'a', 'b', [length]: 2 ],
'a',
[ [ 'a', 'b', [length]: 2 ],
[ 'a', 'b', [length]: 2 ],
[length]: 2 ],
[length]: 3 ] }
FAQs
A simple way to fully view deeply nested data in the console.
We found that verboselog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.