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

@webosose/ares-cli

v2.4.0

Published

Command Line Interface for development webOS application and service

Downloads

8,335

Readme

ares-cli

Summary

ares-cli is a command-line interface (CLI) for webOS. It provides a collection of commands used for creating, packaging, installing, and launching apps or services in the command line environment. ares-cli lets you develop and test apps or services without using any IDE.

Installation

To install ares-cli, use npm. It is recommended to install ares-cli globally. For Linux and macOS, you might need the sudo command.

$ npm install -g @webosose/ares-cli

Note: Node version 10.24.1 to 14.15.1 are recommended.

Compatibility

Our release cycle is independent of webOS OSE and Auto. We recommend using the latest CLI. The latest CLI is compatible with the latest webOS OSE and Auto"

For information about the CLI previous version and compatible with platform, see the CLI Release Notes.

Command List

The list of ares-cli commands is as follows:

  • ares-generate: Creates a webOS app or service from templates.
  • ares-package: Packages the app or services into a package file.
  • ares-setup-device: Manages the target devices.
  • ares-install: Installs the app or service on the target device.
  • ares-launch: Launches or terminates the app.
  • ares-inspect: Enables Web Inspector or Node's Inspector for debugging web app or JS service.
  • ares-server: Runs the Web server for testing local app file.
  • ares-shell: Executes shell commands in the target device.
  • ares-push: Pushes file(s) from a host machine to a target device.
  • ares-pull: Pulls file(s) from a target device to a host machine.
  • ares-device: Displays the device information.
  • ares-log: Shows or saves logs of webOS apps and services.

Documentations

  • For more details about how to use ares-cli, see the webOS OSE CLI User Guide.
  • For step-by-step guides for developing apps or services, see the tutorials.
    • Developing External Web Apps
    • Developing External JS Services
    • Developing External QML Apps
    • Developing External Native Apps
    • Developing External Native Services

Test Commands

You can test the ares-cli commands and their options to check their validity. The test is performed by jasmine or npm test.

Before You Begin

  1. Turn on the webOS device.
  2. Check the IP address and SSH port number.
  3. Enable the developer mode.
    • webOS OSE: Already enabled by default.
    • webOS Auto: Enable it in the Settings app.

The following key-value pairs are the default configurations for the test.

| Key | Value | |--------|-----------| | device | emulator | | ip | 127.0.0.1 | | port | 6622 |

Test Usages

  • Test with default configurations.

    $ jasmine

    or

    $ jasmine device=emulator, ip=127.0.0.1, port=6622
  • Test with specific configurations. (It can be omitted when using port 22.)

    $ jasmine --device=webOS --ip=192.168.0.12
  • Test with specific port configurations.

    $ jasmine --device=webOS --ip=192.168.0.12 --port=24
  • Test ares-generate command.

    $ jasmine --device=webOS --ip=192.168.0.12 --port=24 spec/jsSpec/ares-generate.js
  • Test using npm command npm test instead of jasmine.

    $ npm test --device=webOS --ip=192.168.0.12 --port=24

Contributing

The step-by-step guide to contribute is as follows:

  1. Fork: Fork source from ares-cli repository.
  2. Create a new branch: Create a branch from develop branch.
  3. Implement: Implement the source codes and git push the changes to the new branch.
  4. Create a pull request: Create a pull request. When you write a commit message, make sure you follow Commit Message Guidelines.
  5. Submit the pull request to the owner.

Commit Message Guidelines

The following is an example of the commit message.

Change ares-device-info to ares-device  

:Release Notes: 
Expand the scope of ares-device-info command by changing its name

:Detailed Notes:
For now, the scope of the ares-device-info command seems to narrow,
so it is hard to add other options to the command (such as capture)
- Rename ares-device-info.js to ares-device.js
- Add --system-info and --session-info options
- Update ares-device TC

:Testing Performed:
1. All unit test passed
2. ESLint done
3. Check the below commands
   $ ares-device
   $ ares-device --system-info
   $ ares-device --session-info

:Issues Addressed:
[ISSUE-1] Change ares-device-info to ares-device
  • Summary: Describe a summary of the pull request. Make sure you capitalize the first letter of the summary.
  • Release Notes: Describe what this commit implements.
  • Detailed Notes: Describe the problems of this commit and how to fix them.
  • Testing Performed: Describe detailed descriptions of the testing you performed.
    • Unit test: Run CLI unit test via jasmine on the target device or emulator and write the result. All unit tests must be passed.
    • ESlint: Run eslint on ares-cli root directory and write the result. No warning/error would be allowed.
    • Detail test steps with CLI commands : Write the commands to verify your changes. Be sure that the maintainers can check the changes by running that commands.
  • Issues Addressed: Write an issue number and its summary.

Copyright and License Information

Unless otherwise specified, all content, including all source code files and documentation files in this repository are:

Copyright (c) 2020-2023 LG Electronics, Inc.

All content, including all source code files and documentation files in this repository except otherwise noted are:

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

SPDX-License-Identifier: Apache-2.0