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 falseCreate a nebula visualization project called sn-table with the npm package manager
instead of yarn
nebula create sn-table --pkgm npmCreate a nebula visualization project without a picasso.js template.
nebula create sn-table --picasso noneOptions
| 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
To learn how to build a basic nebula visualization, see the Build a HelloWorld extension using nebula.js tutorial.