
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@skyra/influx-utilities
Advanced tools
A tiny opinionated abstraction layer for InfluxDB for interacting with a single organization
@skyra/influx-utilities
A tiny opinionated abstraction layer for InfluxDB for interacting with a single organization, based on Skyra's internal tools.
You can provide the configuration for the Influx client in several ways.
INFLUX_URL
: ConnectionOptions.url
, the base URL to be used.INFLUX_TOKEN
: ConnectionOptions.token
, the authentication token.INFLUX_ORG
: ConnectionOptions.org
, the organization to use for the query and write APIs.INFLUX_BUCKET
: ConnectionOptions.writeBucket
, the bucket to write to in the write API.// index.ts
process.env.INFLUX_URL = 'https://influxdb.skyra.pw';
process.env.INFLUX_TOKEN = 'my-secret-token';
process.env.INFLUX_ORG = 'Skyra-Project';
process.env.INFLUX_BUCKET = 'analytics';
import { Client } from '@skyra/influx-utilities';
const client = new Client();
setInfluxVariables
// index.ts
import { Client, setInfluxVariables } from '@skyra/influx-utilities';
setInfluxVariables({
influxUrl: 'https://influxdb.skyra.pw',
influxToken: 'my-secret-token',
influxOrg: 'Skyra-Project',
influxBucket: 'analytics'
});
const client = new Client();
Client.Options
import { Client } from '@skyra/influx-utilities';
const client = new Client({
url: 'https://influxdb.skyra.pw',
token: 'my-secret-token',
org: 'Skyra-Project',
writeBucket: 'analytics'
});
FAQs
A tiny opinionated abstraction layer for InfluxDB for interacting with a single organization
The npm package @skyra/influx-utilities receives a total of 56 weekly downloads. As such, @skyra/influx-utilities popularity was classified as not popular.
We found that @skyra/influx-utilities demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.