All Projects β†’ rispa-io β†’ Rispa Cli

rispa-io / Rispa Cli

Licence: mit
Modular project management

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Rispa Cli

Cgx
πŸ’»πŸ”₯CLI to generate the recommended documentation/files to improve contribution (Github, Gitlab, CodeCommit and Bitbucket)
Stars: ✭ 190 (+533.33%)
Mutual labels:  cli, generator
Graphback
Graphback - Out of the box GraphQL server and client
Stars: ✭ 323 (+976.67%)
Mutual labels:  cli, generator
Typed Scss Modules
🎁 Generate type definitions (.d.ts) for CSS Modules using SCSS
Stars: ✭ 192 (+540%)
Mutual labels:  cli, generator
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (+406.67%)
Mutual labels:  cli, generator
Xcodegen
A Swift command line tool for generating your Xcode project
Stars: ✭ 5,032 (+16673.33%)
Mutual labels:  cli, generator
Faviator
A simple easy favicon generator.
Stars: ✭ 155 (+416.67%)
Mutual labels:  cli, generator
Extension Create
Create modern cross-browser extensions with no build configuration.
Stars: ✭ 167 (+456.67%)
Mutual labels:  cli, generator
Genesis
Templating, scaffolding and generation tool
Stars: ✭ 122 (+306.67%)
Mutual labels:  cli, generator
Plop
Consistency Made Simple
Stars: ✭ 4,765 (+15783.33%)
Mutual labels:  cli, generator
Swaggen
OpenAPI/Swagger 3.0 Parser and Swift code generator
Stars: ✭ 385 (+1183.33%)
Mutual labels:  cli, generator
Gf Cli
GoFrame Command Line Interface, which is your helpmate for building GoFrame application with convenience.
Stars: ✭ 143 (+376.67%)
Mutual labels:  cli, generator
Cfonts
Sexy fonts for the console
Stars: ✭ 789 (+2530%)
Mutual labels:  cli, generator
Gk
Go-Kit Genetator
Stars: ✭ 136 (+353.33%)
Mutual labels:  cli, generator
Ignite
Infinite Red's cutting edge React Native project boilerplate, along with a CLI, component/model generators, and more!
Stars: ✭ 13,296 (+44220%)
Mutual labels:  cli, generator
Gitignore It
πŸ“ƒ A CLI to generate .gitignore files
Stars: ✭ 132 (+340%)
Mutual labels:  cli, generator
Pollinate
Template your base files and generate new projects from Git(Hub).
Stars: ✭ 213 (+610%)
Mutual labels:  cli, generator
Bangajs
BΓ ngΓ‘ is a CLI generator for scaffolding ExpressJS applications with speed and efficiency.
Stars: ✭ 102 (+240%)
Mutual labels:  cli, generator
Generact
Generate React components by replicating your own
Stars: ✭ 1,471 (+4803.33%)
Mutual labels:  cli, generator
Hygen
The simple, fast, and scalable code generator that lives in your project.
Stars: ✭ 4,107 (+13590%)
Mutual labels:  cli, generator
Devkit
Stars: ✭ 561 (+1770%)
Mutual labels:  cli, generator

Rispa CLI Build Status

ris is the Rispa CLI command line utility that allows to set up project structure, manage plugins, run generators.

Rispa CLI works on macOS, Windows, and Linux.

Getting Started

Installation

Install it once globally:

yarn global add @rispa/cli 

or

npm install -g @rispa/cli

You will need to have Node >= 7.10 on your machine.

Creating project

To create project, run:

ris new project-name
cd project-name
ris new

It will create a directory called project-name inside the current folder.
Inside that directory, it will generate the initial project structure and install the selected plugins:

project-name/
  rispa.json
  lerna.json
  package.json
  .gitignore
  .editorconfig
  .travis.yml
  packages/
    ...selected-plugins

rispa.json is an entry point of RISPA project, it contains information about current project.

Options

Development mode

To create project in development mode, run:

ris new --mode=dev

Project will be generated without Subtree usage.

Managing plugins

ris add

To add plugins, run inside project directory:

ris add rispa-eslint-config
ris add

It will add plugin with name rispa-eslint-config to current project.

If you want to browse and select plugins to install, run:

ris add
ris add

It will display available plugins. Press space to select plugins for installation, then press enter to install selected plugins.

If you want to add plugin via git url, run:

ris add git:https://github.com/rispa-io/rispa-core.git

It will add rispa-core plugin via git url to current project.

ris update

To update installed plugins, run inside project directory:

ris update

It will pull changes to all installed plugins in current project.

Pulling changes works through the git interface.

ris remove

To remove a plugin, run inside project directory:

ris remove plugin-name

It will remove plugins-name plugin from current project.

Plugin removal is an unsafe operation,
because, it doesn't make changes to the client code
and requires corrections by user.

ris assemble

To assemble plugins, run inside project directory:

ris assemble
ris assemble

It will install not installed plugins from rispa.json.

Launch plugin script

ris run or ris

To launch plugin script, run inside project directory:

ris run @rispa/core lint
ris run

It will launch script lint in @rispa/core plugin.

ris run all or ris all

To launch script for all plugins, run inside project directory:

ris run all lint
ris run all lint

It will launch script lint for all installed plugins.

Options

Yarn

To force or disable usage of Yarn, use --yarn:

ris run all lint --yarn=true
Skip

To skip plugins, use --skip:

ris run all lint --skip=@rispa/ui-kit,feature-plugin

Launch generator

ris g

To launch plugin generator, run inside project directory:

ris g core generator-name
ris g

It will launch generator-name generator of core package in current project.

Commit

ris commit

To commit project or plugins changes, run inside project directory:

ris commit

It will collect project changes and ask you to enter commit message. The commit will be pushed to the current branch.

2017-06-26 13 01 18

Numerate

ris numerate

To numerate project changes, run inside project directory:

ris numerate

It will scan project tags and display available versions.

ris numerate

Features

Run local version

If you launched the globally installed CLI and there will be local version found, the call will be redirected to the local version.

Subtree

We use Subtree merge strategy for plugins.

Structure

Generated project based on Lerna monorepo structure.

Plugins

Plugins are a part of monorepo modules, they extend the project functionality.

@rispa/core - is an entry point for all plugins, providing enhancements and correct initialization of connected plugins.

List of available plugins can be seen here.

Configuration

To see the full details of an error, run CLI with ENV:

DEBUG=rispa:* ris new
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].