Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
winston-ovh
Advanced tools
An OVH Logs data platform transport for NodeJS Winston logger.
tldr;?
: To break the winston codebase into small modules that work
together.
The winston codebase has been growing significantly with contributions and other logging transports. This is awesome. However, taking a ton of additional dependencies just to do something simple like logging to the Console and a File is overkill.
npm install --save winston-ovh
import { createLogger, transports } from 'winston'
import ovhTransporter from 'winston-ovh'
const logger = createLogger({
level: 'silly',
transports: [
new transports.Console(),
new ovhTransporter({
host: 'graxxx.logs.ovh.com',
token: 'YOUR_TOKEN',
level: 'silly'
})
]
})
logger.error('test error', { some: true })
logger.warn('test warn', { myField: 'test' })
logger.info('test info', { myNumber: 50 })
logger.debug('test debug')
logger.verbose('test verbose', { place: '48.4070554,-4.495554' })
logger.silly('test silly')
The ovh transport takes the following options. 'token' is required:
Due to LAAS naming conventions, all meta data must be suffixing with his type. Ex: myBool => myBool_bool myNumber => myNumber_int
Don't take care of it, winston-ovh will suffix your data
FAQs
A winston transport to log on OVH Laas product
The npm package winston-ovh receives a total of 0 weekly downloads. As such, winston-ovh popularity was classified as not popular.
We found that winston-ovh 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.