/qiskit-js

:atom_symbol: Qiskit for JavaScript.

Primary LanguageJavaScriptApache License 2.0Apache-2.0

Qiskit.js

Build Status experimental License lerna code style: prettier

⚛️ Quantum Information Science Kit for JavaScript.

logo

🎁 Follow us on Twitter if you like this project

💡 I was born as a clone (in JS) of my big brother.

beta: Until v1 breaking changes could be included.

Philosophy

📙 The basic concept of our quantum program is an array of quantum circuits. The program workflow consists of three stages: Build, Compile, and Run. Build allows you to make different quantum circuits that represent the problem you are solving. Compile allows you to rewrite them to run on different backends (simulators/real chips of different quantum volumes, sizes, fidelity, etc); and Run launches the jobs. After the jobs have been run, the data is collected. There are methods for putting this data together, depending on the program. This either gives you the answer you wanted or allows you to make a better program for the next instance.

If you want to learn more about Quantum Computing, you're invited to visit our Quamtum Experience project.

Structure

👜 The components of this repository are exposed as these libraries:

Qiskit for the browser

📥 All components are compatible with browserify.

Install

☕ Install last Node.js stable version (or LTS) and then:

npm i -g qiskit

Use

CLI

🚀 The command line client allows to play with the circuits without having to use any programming language API.

qiskitjs --help

Programatically

📝 As you can see in the next section, we have to use it like in the rest of independent modules. The only difference is we need to select the proper field of the main object before.

const qiskit = require('qiskit');

console.log('Simulator version');
console.log(qiskit.sim.version);

API

👀 Full specification.

version

The actual version of the library.

  • version (string) - Version number.

qasm

A wrapper fot the qiskit-qasm project.

  • qasm (object) - The same object provided in the original library.

sim

A wrapper fot the qiskit-sim project.

  • sim (object) - The same object provided in the original library.

Cloud

A wrapper fot the qiskit-cloud project.

  • Cloud (object) - The same constructor provided in the original library.

utils

A wrapper fot the qiskit-utils project.

  • utils (object) - The same object provided in the original library.

devs

A wrapper fot the qiskit-devs project.

  • devs (object) - The same object provided in the original library.

Authors

👽 https://github.com/Qiskit/qiskit-js/graphs/contributors

Original code (Python) authors here.

Other Qiskit projects

🎒

License

🐧 Qiskit is released under the Apache license, v2.0.

Do you want to help?

😎 If you'd like to help please take a look to our contribution guidelines.