nebula create
Create a new nebula visualization.
Usage
nebula create <name>
Example
Create a nebula visualization project and do not install any dependencies yet
nebula create sn-table --install false
Create a nebula visualization project called sn-table
with the npm
package manager
instead of yarn
nebula create sn-table --pkgm npm
Create a nebula visualization project without a picasso.js template.
nebula create sn-table --picasso none
Options
Parameter | Description | Default |
---|---|---|
—version | Show version number | |
—install | Run package installation step | true |
—pkgm string (“npm”|“yarn”) | Set package manager | ”yarn” |
—picasso string (“none”|“minimal”|“barchart”) | Set picasso template | |
—author string | Set package author | |
-h, —help | Show help for command |
Details
Running nebula create without —picasso prompts a selection of the available options.
- none: without the picasso.js template
- minimal: a basic setup of picasso.js is ready
- barchart: a bar chart component created by picasso.js is ready
A tutorial for building basic nebula visualization is available here.