New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@qiskit/devs-ibm

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qiskit/devs-ibm - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

10

package.json
{
"name": "@qiskit/devs-ibm",
"version": "0.6.1",
"version": "0.6.2",
"description": "IBM Q engine for Qiskit for developers",

@@ -18,3 +18,3 @@ "author": {

"scripts": {
"dep-check": "depcheck",
"deps": "depcheck",
"test": "mocha --recursive test --timeout 20000 --color"

@@ -37,6 +37,6 @@ },

"dependencies": {
"@qiskit/utils": "^0.6.1"
"@qiskit/utils": "^0.6.2"
},
"devDependencies": {
"@qiskit/cloud": "^0.6.1"
"@qiskit/cloud": "^0.6.2"
},

@@ -50,3 +50,3 @@ "engines": {

},
"gitHead": "592788206cd36f9d6be50dac3771e0e88c64e3bd"
"gitHead": "e057e86d10204c833a598a44553b0e7eb85849d4"
}

@@ -18,6 +18,21 @@ # Qiskit.js devs (IBM Q)

```js
const qiskit = require('@qiskit/devs-ibm');
const Cloud = require('qiskit/cloud');
const qiskit = require('qiskit/devs-ibm');
console.log('Version');
console.log(qiskit.version);
const cloud = new Cloud();
cloud.login('YOUR_PERSONAL_TOKEN_HERE')
.then(() => {
cloud.backends()
.then(data => {
console.log('Backends:');
console.log(data);
});
qiskit.random({
custom: cloud,
// default: simulator
// engine: "ibmqx4"
})
.then(rand => console.log(`Random: ${rand}`))
});
```

@@ -24,0 +39,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc