Particle's full-stack Internet of Things (IoT) device platform gives you everything you need to securely and reliably connect your IoT devices to the web. For more details please visit www.particle.io.
The Particle CLI is a powerful tool for interacting with your IoT devices and the Particle Cloud. The CLI uses node.js and can run on Windows, Mac OS X, and Linux. It's also open source so you can edit and change it, and even send in your changes as pull requests if you want to share!
For end-users, the most up-to-date installation instructions can be found here: macOS / Linux | Windows
Note: Some commands may require openssl
to be installed on your system.
You can install it using your package manager (e.g. brew install openssl
on macOS).
Before proceeding with this section, remember that the staging version may contain bugs and issues that are not present in the production version.
Please use the staging versions only for testing purposes.
In case you're running macOS or Linux, you can install a staging version of the CLI by running the following command:
MANIFEST_HOST=binaries.staging.particle.io bash <(curl -sL https://particle.io/install-cli)
For Windows, you can install a staging version of the CLI by downloading the installer from here.
In case you have already installed the CLI, you can update it to the staging version by running the following command:
export PARTICLE_MANIFEST_HOST=binaries.staging.particle.io
particle update-cli --version {STAGING_VERSION_TO_TEST}
Don't forget to turn off the updates to prevent issues while you're testing the staging version:
particle update-cli --disable-updates
Once you're done testing the staging version, you can revert to the production version by running the following command:
export PARTICLE_MANIFEST_HOST=binaries.particle.io
particle update-cli --enable-updates
particle update-cli --version {PRODUCTION_VERSION}
These next two commands are all you need to get started setting up an account, claiming a device, and discovering new features.
Guides you through creating a new account, and claiming your device!
$ particle setup
Shows you what commands are available, and how to use them. You can also give the name of a command for detailed help.
$ particle help
$ particle help keys
If you wish to easily update Device OS on your device to a later version, you can use the particle update
command.
You can specify a version with the --target
argument.
- Connect your device via USB
- Run
particle update
.
For the full list of commands, please see the CLI command reference.
- The Wireless Photon Setup Wizard will only automatically switch networks on OS X. Users of other operating systems will need to manually connect their computer to the Photon's Wi-Fi. You will be prompted during the wizard when this is required.
Currently development is supported on macOS only!
- Install Node.js [
node@16.x
andnpm@8.x
are required] - Clone this repository
$ git clone git@github.com:particle-iot/particle-cli.git && cd ./particle-cli
- Install external tools:
openssl
(e.g.brew install openssl
) - Install dependencies
$ npm install
- View available commands
$ npm run
- Run the tests
$ npm test
- Run the CLI
$ npm start
- Start Hacking!
When developing, run individual commands using:
$ npm start -- <command> <options>
- e.g. $ npm start -- library view dotstar --readme
Anything after the --
delimiter is passed directly to the CLI (docs).
To test the source as it will be published:
- Register the
particle
command globally:$ npm link
- Run commands:
$ particle --help
(using standard argument formatting)
The Particle CLI has a number of automated test suites and related commands. The most important are:
npm test
- run all tests (NOTE: End-To-End tests require additional setup)npm run lint
- run the linter and print any errors to your terminalnpm run test:ci
- run all tests excluding device-dependent end-to-end test as CI doesnpm run test:unit
- run unit testsnpm run test:integration
- run integration testsnpm run coverage
- report code coverage stats
All tests use mocha, chai, and sinon with coverage handled by nyc.
We recommend running locally if you can as it greatly shortens your feedback loop. However, CI also runs against every PR and error reporting is publicly available.
- Cli is packaged using pkg. The packaging is done using GitHub Actions and the executables are uploaded to binaries.particle.io/particle-cli.
- There are two installers that are created for the CLI:
- Windows installer:
particle-cli-setup.exe
(This is an NSIS installer for Windows). You can see the installer script here ParticleCLISetup.nsi - Unix installer:
install-cli
(This is a shell script that installs the CLI on Unix systems). You can see the installer script here install-cli.sh
- Windows installer:
- The installers are created using GitHub Actions and are uploaded to binaries.particle.io/particle-cli/installer.
- The current supported platforms for the CLI are:
- Windows
- x64
- macOS
- x64
- arm64
- Linux
- x64
- arm64
- arm
- Windows
See RELEASE.md.