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

maestro-cli-roku

v0.15.4

Published

command line tools for maestro-roku projects

Downloads

91

Readme

Build Status codecov GitHub NPM

Links

About

This repo contains the source for maestro-cli, which is used by the - maestro framework.

maestro-cli is the command line tool that allows you to compile brighterscript, use MVVM bindings in your roku apps, install and update the maestro framework, and generate code.

Check out the maestro docs for more info.

Get help

maestro-cli --help

Usage: maestro-cli [options] [command]


  Command Line Interface for Maestro projects.
  Read more here https://github.com/georgejecook/maestro/blob/master/docs/index.md#maestro-cli


Options:
  -V, --version                                output the version number
  -h, --help                                   output usage information

Commands:
  compile|c [options] <config>                 
    Compiles the given project's xml bindings and '.bs' brighterscript files.
    It's a destructive operation that should be performed on built output.
  
  install|i [options] <sourcePath>             
    Installs the maestro framework in the project's sourcePath.
  
  createView|cv [options] <sourcePath> <name>  
    Creates a view, and associated files, relative to the default folders in your project, which are: source/components/view/screen


install --help
Usage: maestro-cli install|i [options] <sourcePath>


  Installs the maestro framework in the project's sourcePath.


Options:
  -r, --release [version]  Allows you to specify the desired release version
  -n, --noRLog             if true, then rLog is not installed with the framework. Do this if you have a different rLog location
  -c, --compiled           if true, compiled sources are used - use this if you are using the base classes in an non-bs compiling environment
  -h, --help               output usage information
  ~/hope/open-source/maestro     master  0.5.0  1  
compile --help                   
Usage: maestro-cli compile|c [options] <config>


  Compiles the given project's xml bindings and '.bs' brighterscript files.
  It's a destructive operation that should be performed on built output.


Options:
  -s, --sourcePath [path]          Root path of project/build folder (e.g. roku-deploy staging folder).
                                   All files under this folder will be duplicated
  -o, --outputPath [path]          Path where the processed project will be duplicated to.
    This is the code you will deploy on your roku/distribute
  -f, --filePattern [value]        Array of globs corresponding to files to process.
    Relative to sourcePath
  -x, --nonCheckedImports [value]  Array of paths, relative to pkg:/root, indicating
    any files you do not want to be checked for existence when checking imports.
    This is important for interoperation with other parts of your build chain,
    which might not yet be in your build folder
  -l, --loglevel [value]           From 0 to 3 (error, warn, info, verbose) - default info
  -h, --help                       output usage information
  ~/hope/open-source/maestro     master  0.5.0  1  

cv --help                        
Usage: maestro-cli createView|cv [options] <sourcePath> <name>


  Creates a view, and associated files, relative to the default folders in your project, which are: source/components/view/screen


Options:
  -b, --baseView [type]       type of view component to extend - default BaseScreen
  -v, --hasVM [true|false]    if true, adds a viewModel for this view
  -t, --hasTest [true|false]  if true, adds a test for the view model
  -B, --baseVM [type]         type of viewModel to extend - default BaseViewModel
  -s, --subfolder [path]      view subfolder to use - default xxxx/view/screen, i.e. sourcePath/components/view/screen, or sourcePath/source/tests/view/screen
  -h, --help                  output usage information