
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
Awesome log and types for javascript and typescript!
npm install --save ptz-log
import log from 'ptz-log';
log('hi');
// Colors are optional
log({ ptzColorLog: 'red' }, 'welcome',
{ ptzColorLog: 'yellow' }, 'to',
{ ptzColorLog: 'green' }, 'polutz!');
How to use Ilog type as dependency injection, and provide your custom logs
import { Ilog, log } from 'ptz-log';
const myLog: Ilog = function (...args) {
console.log('From my custom logging:', ...args);
}
class Test {
log: Ilog;
constructor({ log: Ilog }) {
this.log = log;
}
testing() {
log('returning true!');
return true;
}
}
const test = new Test({ log: myLog });
test.testing();
npm install -g ts-node babel-cli
npm install
npm test
FAQs
Awesome log for javascript
The npm package ptz-log receives a total of 24 weekly downloads. As such, ptz-log popularity was classified as not popular.
We found that ptz-log 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.