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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cli-droidscript

v0.2.6

Published

Command Line Interface for DroidScript.

Downloads

30

Readme

Command-Line Interface for DroidScript

Download DroidScript app from Google Play

What is DroidScript

DroidScript is an easy to use, portable coding tool which simplifies android app development. It dramatically improves productivity by speeding up development by as much as 10x compared with using the standard development tools.

About DroidScript CLI

A command line interface that allows you to manage and do simple proccesses on DroidScript app using your favorite terminal.

Example Usage

To use CLI for DroidScript, run first DroidScript app and turn on WiFi IDE. Please take note of the IP Address shown in the popup.

Connect to DroidScript.

ds connect

This will ask for the IP Address and password if needed and will save them for future sessions.

Creating DroidScript apps.

ds create <appname> [--type]

New native app. (Default)

ds create "MyNewApp"

New html app.

ds create "MyNewApp" --html

New hybrid app.

ds create "MyNewApp" --hybrid

New native app with MUI library.

ds create "MyNewApp" --mui

New node app.

ds create "MyNewApp" --node

Running DroidScript app.

ds run <appname> [--debug]

Example

ds run MyNewApp

Running an app in debug mode.

ds run MyNewApp -d

Press escape or q key to exit debug mode.

Stop a running DroidScript app.

ds stop

Initializing a folder as a DroidScript project.

ds init

This will let you choose a DroidScript app to associate with the current working directory. Make sure you are in the right folder.

Reloading and updating local files.

ds reload

This will fetch all the files from DroidScript app and update the local files. Make sure you are in the right folder.

List all DroidScript apps.

ds ls

Delete a DroidScript app.

ds delete <appname>

Example

ds delete MyNewApp

Complete DS options and commands

Options:

  • -V, --version - output the version number
  • -h, --help - display help for command

Commands:

  • ds connect - Connect to DroidScript server. Server information will be saved for future sessions.
  • ds create <appname> - Create a new DroidScript app.
  • ds init - Initialize a folder as DroidScript project.
  • ds reload- Reload the current folder if it is a DroidScript project. This will fetch all the files from its corresponding DroidScript project.
  • ds run <appname> - Run the current app associated with the folder or specify a project name.
  • ds stop - Stop the currently running app.
  • ds delete <appname> - Delete an app.
  • ds ls - List all DroidScript projects.
  • ds help [command] - display help for command.

Best Practices

  • Everytime you start editing your project, it is a good idea to run ds reload command to fetch any changes from DroidScript app.

Known Issues

  • None so far.
Author