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

@rndm/cli

v0.2.0

Published

Commandline interface for RNDM Packages

Downloads

6

Readme

RNDM Command Line Interface (CLI)

Introduction

RNDM CLI is a utility installation tool for RNDM Packages, that allows for a simple and easy to follow integration. This package works with the RNDM React Cross Platform template as well as the RNDM Renderer suite of tools, plugins and presets.

Installation

Make sure you have Node.js installed.

Then, to get started simply run the following command from your preferred terminal interface:

npm install -g @rndm/cli

Documentation

For further assistance, you can run the below command to get command line help:

rndm -h

init

The init command is designed to create a new project based on the latest version of RNDM React Cross Platform. Since this template will regularly updated to address new features and potential issues, this command has been left extremely simple, to allow one time installation.

Options:

<name>: The folder name into which you want the template cloned. This is a mandatory field.

--packages (-p): A comma delimited array of RNDM Plugins and Presets you would like to include as part of the init process. This is an optional field.

Command:

rndm init example

Plugin

The plugin command is designed to create a new plugin project based on the latest version of RNDM React Cross Platform. Since this template will regularly updated to address new features and potential issues, this command has been left extremely simple, to allow one time installation.

Options:

<name>: The folder name into which you want the template cloned. This is a mandatory field. This will be prepended with 'rndm-render-plugin-'

Command:

rndm plugin example

quickstart

As with the init command above, it will initialise a new project. However, this command will also run the following installation processes:

npm install;
pod install;
npm run web;

The concept of this is to simply initialise a project, install the relevant components and start the project running in a web browser in one command.

Options:

<name>: The folder name into which you want the template cloned. This is a mandatory field.

--packages (-p): A comma delimited array of RNDM Plugins and Presets you would like to include as part of the init process. This is an optional field.

Command:

rndm init example

example

The example command is a helper command. Many RNDM Renderer Plugins and Presets come with helpful templates that give you a head start on how to use their integration functionality.

This command, will both show you the available examples that can be created, as well as run the respective plugin command to do so.

Options:

--packages (-p): The RNDM Plugin or Preset you would like to have examples for. If you would like all packages and all templates, then a value of '*' can be passed in as the value.

--templates (-t): If the name of the example template you would like created. If a value of '*' is passed here then all templates for the selected package will be installed.

Command:

rndm init -p *