
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.
@infini-dev/logging
Advanced tools
Infinisoft Dev is a set of developer's design patterns, scripts, templates and tools to make our lives easier and go faster. Faster, close to the speed of light!
Logger with an adapter for console log..
Common use case
Any output. For example, we use it to ouput data on external source like Sentry or Logrocket.
Run of one these command to install.
$ npm i @infini-dev/logging
or
$ yarn add @infini-dev/slogging
Output all level.
import {storage} from '@infini-dev/logging'
const {error} = logging()
const saveDocument = (path: string, changes: string) => {
// ... Implementation
error("Failed to save..")
// ... Implementation
}
Down the road requirement changes. You need to provide more output with multiple source. No problem, change the adaptor for another stoage without any changes to the implementation.
import {storage} from '@infini-dev/storage'
import {storageAdapterNode} from "@inifni-dev/storage/nodejs"
import {storageAdaperSentry} from "@infini-dev/sentry"
const _storage = storage([storageAdapterNode, storageAdaperSentry])
const saveDocument = (path: string, changes: string) => {
// Same implementation
storage.write(path, changes)
}
More details on www.infini-soft.com
Code for buck. You want to contribute? We will PAY for it! We are looking for collaborators to speed our eco system's development.
Powered 🚀 by Infinisoft Inc.
Wanna code the future? Come with us [https://www.infini-soft.com]
FAQs
Logging Abstraction with an adapter for console.
We found that @infini-dev/logging 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.