npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

strato-cli

v0.0.9

Published

CLI tool for easily deploying app bundles to the STRATO blockchain

Downloads

14

Readme

STRATO CLI Tool

Used to easily deploy app bundles to the STRATO Blockchain

Follow these instructions to setup and begin developing applications on the STRATO Blockchain

Pre-requisites:

  • Node JS (Version 6 and up)
  • Your favorite code editor for solidity (our team uses Sublime or Atom)

1. Install CLI Tool:

Open your terminal and install the STRATO CLI Tool from the NPM repository, run:

npm install -g strato-cli

Test your installation by running the command

strato --version

2. Configure CLI Tool:

In order to configure the CLI Tool, we need to provide the STRATO Blockchain host where the app bundle will be deployed.

You can use STRATO Public Network running at https://stratodemo.blockapps.net or you can run own local instance of STRATO using https://github.com/blockapps/strato-getting-started

For Strato Public Network:
Create a Developer account on STRATO Public Network https://stratodemo.blockapps.net

Faucet your account after login to your account from `Account` Tab
For Strato Local/Custom Network:
Create an account on STRATO Local/Custom Network by following the sign-up process

Faucet your account after login to your account from `Account` Tab
Note: Don’t forget to faucet your account

Now run the below command

strato config

You will be prompted for a <username>, type in your username of the account created above

For <hostname> you will be prompted to press [Enter] or [Space] as below

For Strato Public Network:
Press [Enter] to configure the CLI Tool to use the STRATO Public Network as Default Host (stratodemo.blockapps.net)
For Strato Local/Custom Network:
Press [Space] to configure the CLI Tool to use the your http://Localhost or Custom hostname

3. Create Sample dApp using CLI Tool:

Use the following to download the Test dApp to your system and configure the App Bundle

strato init

You will be prompted for bundle information, complete as follows:

app title: <any title>
app description: <any description>
version: <any version number>
email: <your email address>

Completing this step will create a new folder with the app’s title in the current directory.

cd into the app directory and review the file contents, you should have the following:

app directory
├─ contracts/
│   └─ ...all solidity contract files (*.sol)
│
├─ metadata.json
│
└─ index.html

4. Upload app bundle using CLI Tool:

Upload the app to the STRATO Blockchain by running the following command from your home directory where <app name> is the folder created in above steps.

For example if the app's title in the above steps is SampleApp in my home folder then upload command will be strato upload SampleApp

Linux/Mac
strato upload path/to/<app name>

Windows
strato upload path\to\<app name>

You will be prompted for a password for the STRATO User you created at the start of this guide.

Upon successful upload of the application, you will receive the following response including the URL of the deployed app:

application successfully deployed with url http://<hostname>/apps/<unique url>

If using Strato Public Network the app will be visible in the App Launchpad, you can view it and use it by navigating to: http://stratodemo.blockapps.net/dashboard/#/apps

5. Check User Balance using CLI Tool:

Balance will displayed in wei for configured user

strato balance

For additional commands for the STRATO CLI Tool, run:

strato --help