BlueRain
Github
  • 💧Introduction
  • Overview
    • 📲Quick Start
    • 🎛️Configuration with bluerain.js
    • 🎡Lifecycle Events
    • 🛣️Roadmap
  • Key Concepts
    • 🔌Plugins
      • Developing an Analytics Plugin
      • Developing a Logger Plugin
      • Developing a Theme Plugin
    • 🎣Hooks
    • 🎁Components
    • 📦BlueRain Modules
    • 🎛️Configs
    • 📈Analytics
    • 📔Logger
    • 🎨Themes
      • Installation
      • Consuming Selected Theme
      • Customise Themes
      • Customise Components
      • Theme Configs
      • Theme Structure
    • Registry
  • Guides
    • 🗿Icons
    • 🛂Migrating from V3
  • Components
    • Typography
    • Icons
      • Icon
      • DynamicIcon 📌
      • PluginIcon 📌
  • CLI
    • Expo
    • Web
    • Storybook (Web)
    • Storybook Native (Expo)
Powered by GitBook
On this page
  • Install BlueRain CLI
  • Install Target Platform CLI Plugin
  • Start Project
  1. Overview

Quick Start

Install BlueRain CLI

The first step to get started is to install BlueRain CLI as a global dependency.

yarn global add @blueeast/bluerain-cli

Install Target Platform CLI Plugin

Next, you need to install the desired target platform plugin of BlueRain CLI. This plugin adds commands to the CLI that can perform platform specific tasks (i.e. start project in development mode, build project, etc).

bluerain plugins:add @blueeast/bluerain-cli-web
bluerain plugins:add @blueeast/bluerain-cli-expo
bluerain plugins:add @blueeast/bluerain-cli-electron

Start Project

Start the project in development mode.

bluerain web:start
bluerain expo:start
bluerain electron:start

PreviousIntroductionNextConfiguration with bluerain.js

Last updated 6 years ago

📲