Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

status-dev-cli

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

status-dev-cli

CLI for Status

  • 2.0.0
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Status CLI

Additional tools for DApps developers. These tools allows to speed up the process of developing DApps for Status.

Requirements

  1. adb (from Android SDK);
  2. curl;
  3. Node.js;
  4. NPM;
  5. Watchman (https://facebook.github.io/watchman/docs/install.html).

Installing

npm i -g status-dev-cli

How to

To make debugging work we run a web server on your device. It runs on port 5561 on both iOS and Android, but only if you need it.

To start a server you need to:

  1. Connect your device to computer;
  2. In the case you're developing for Android, you need to use a port forwarding. Execute adb forward tcp:5561 tcp:5561;
  3. Open Status application and log in;
  4. Open Console chat and execute /debug command providing "On" as the argument.

You can also easily turn the server off from here.

Note: if you turn the server on, it will start automatically the next time you log in.

Scenario

Imagine you are developing a DApp on your computer. You have a directory where all DApp files are placed, and there is a server running on your computer. Let's say it is running on port 8080, so you can access your DApp by typing http://localhost:8080 in your browser.

  1. Add a DApp to Status by executing status-dev-cli add-dapp '{"whisper-identity": "dapp-test", "dapp-url": "http://localhost:8080/", "name": "My Dapp"}';
  2. Open the "My Dapp" on your device;
  3. Optional: Execute status-dev-cli watch-dapp . '{"whisper-identity": "dapp-test"}' to start automatically refreshing your DApp in Status browser when you change the DApp's code.

API

You can specify a --dapp-port in the case your DApp uses port other than 8080.

Adding DApp

status-dev-cli add-dapp [dapp]

  • dapp — JSON containing DApp information. It is not required if your DApp contains package.json file. Otherwise, this map should contain whisper-identity, dapp-url and name fields (see the example in Scenario section)

Removing DApp

status-dev-cli remove-dapp [dapp]

  • dapp — JSON containing whisper-identity field. It is not required if your DApp contains package.json file.

Watching for DApp changes and refreshing DApp automatically

status-dev-cli watch-dapp [dappDir] [dapp]

  • dapp_dir — dir that should be observed. Not required;
  • dapp — JSON containing whisper-identity field. It is not required if your DApp contains package.json file.

FAQs

Package last updated on 26 Feb 2017

Did you know?

Socket

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.

Install

Related posts

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