Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@vtex/api
Advanced tools
This client enables Node developers to quickly integrate with the VTEX IO APIs.
The clients currently available in this library are:
Usage:
import { AppsClient } from '@vtex/api';
const client = new AppsClient({
authToken: yourAuthToken,
userAgent: myUserAgent
});
Install the dependencies (npm install
) and run npm run build
.
An example usage of the three supported methods of sending a file to VBase:
import {VBase} from '@vtex/api'
import {createReadStream} from 'fs'
const client = new VBase({
account: 'account',
workspace: 'workspace',
authToken: 'test',
userAgent: 'test send',
region: 'aws-us-east-1',
})
client.saveFile(
'bucket',
'test-send-stream-gzip.txt',
createReadStream('./test-send.txt'),
{gzip: true, gzipOptions: {level: 9}}
).then((res) => {
console.log('gz:', res)
})
client.saveFile(
'bucket',
'test-send-stream.txt',
createReadStream('./test-send.txt'),
{gzip: false}
).then((res) => {
console.log('stream:', res)
})
client.saveFile(
'bucket',
'test-send-file.txt',
'./test-send.txt'
).then((res) => {
console.log('file:', res)
})
FAQs
VTEX I/O API client
The npm package @vtex/api receives a total of 5,223 weekly downloads. As such, @vtex/api popularity was classified as popular.
We found that @vtex/api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.