
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
使用TypeScript开发的Node的数据提取工具
$ npm install node-datax
const { datax } = require('node-datax');
const srcConnect = { host: '', username: 'postgres', password: '', database: '' }
const destConnect = { host: '', username: 'postgres', password: '', database: '' }
try {
const datax1 = await datax(srcConnect, destConnect, { srcName: 'jcb_cd_test', destName: 'jcb_cd', column: ['*'] })
datax1.on('finish', (res) => {
console.log('总条数:', res.count)
console.log('finish')
})
datax1.on('error', (res) => {
console.log('error')
})
datax1.on('data', (res) => {
console.log('完成条数:', res.count)
})
} catch (error) {
console.log('初始化失败')
}
tsconfig.json中sourceMap为falsenpm run build命令FAQs
Data ETL of TS/JS
We found that node-datax 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.