Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
mysterium-tequilapi
Advanced tools
a library to control mysterium_client and myst from mysteriumnetwork/node
npm i mysterium-tequilapi
import TequilapiClientFactory, { TEQUILAPI_URL } from 'mysterium-tequilapi'
const factory = new TequilapiClientFactory(TEQUILAPI_URL)
const client = factory.build(factory.buildAdapter())
client.identitiesList().then((identities) => {
console.log(identities)
})
Output:
{"identities":[{"id":"0xf2732f2100d19d74b1b5484037ebf6c13736d1bc"}]}
const Tequilapi = require("mysterium-tequilapi")
const factory = new Tequilapi.default(Tequilapi.TEQUILAPI_URL)
const client = factory.build(factory.buildAdapter())
client.healthCheck().then((res) => {
console.log(res)
})
Output:
{ "uptime":"75h23m14.658120675s",
"process":19857,
"version":"0.2.3",
"buildInfo": {
"commit":"91840225277923a61de2bf5683a24532ee638559",
"branch":"0.2.3",
"buildNumber":"1389"
}
}
Client object fulfills the following interface:
interface TequilapiClient {
healthCheck (timeout: ?number): Promise<NodeHealthcheckDTO>,
stop (): Promise<void>,
identitiesList (): Promise<Array<IdentityDTO>>,
identityCreate (passphrase: string): Promise<IdentityDTO>,
identityUnlock (id: string, passphrase: string): Promise<void>,
identityRegistration (id: string): Promise<IdentityRegistrationDTO>,
findProposals (query: ?ProposalsQuery): Promise<Array<ProposalDTO>>,
connectionCreate (request: ConnectionRequest, timeout: ?number): Promise<ConnectionStatusDTO>,
connectionStatus (): Promise<ConnectionStatusDTO>,
connectionCancel (): Promise<void>,
connectionIP (timeout: ?number): Promise<ConnectionIPDTO>,
connectionStatistics (): Promise<ConnectionStatisticsDTO>,
location (timeout: ?number): Promise<ConsumerLocationDTO>
}
Run CI checks:
npm run ci
After modifying TS files run:
npm run prepack && npm run generate:flow
API docs are available tequilapi.mysterium.network
FAQs
Api library to control mysterium client and node
The npm package mysterium-tequilapi receives a total of 16 weekly downloads. As such, mysterium-tequilapi popularity was classified as not popular.
We found that mysterium-tequilapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.