Getting Started

Instructions to get you up and running in seconds

Installation

First, install blueprint-cliarrow-up-right globally.

npm install -g @onehilltech/blueprint-cli

The command-line interface (cli) is used to create a new Blueprint application, and manage the application's project space.

Creating an Application

Use the installed cli to generate a new application.

blueprint new helloworld

The cli will generate a new Blueprint application in the helloworld directory. It will also install the node modules for the application.

Running the Application

Run the Blueprint application by simply running NodeJSarrow-up-right from the root directory of your application.

cd ./helloworld
node ./app

The Blueprint application will launch with the default configuration. You can now open a browser to http://localhost:8080arrow-up-right, and see the quick start Blueprint application.

Last updated