@bb-vendure/create
v2.2.7-bb.7
Published
A CLI tool for rapidly scaffolding a new Vendure server application. Heavily inspired by [create-react-app](https://github.com/facebook/create-react-app).
Downloads
4
Readme
Vendure Create
A CLI tool for rapidly scaffolding a new Vendure server application. Heavily inspired by create-react-app.
Usage
Vendure Create requires Node.js v8.9.0+ to be installed.
To create a new project, you may choose one of the following methods:
npx
npx @bb-vendure/create my-app
npx comes with npm 5.2+ and higher.
npm
npm init @bb-vendure my-app
npm init <initializer>
is available in npm 6+
Yarn
yarn create @bb-vendure my-app
yarn create
is available in Yarn 0.25+
It will create a directory called my-app
inside the current folder.
Options
--use-npm
By default, Vendure Create will detect whether a compatible version of Yarn is installed, and if so will display a prompt to select the preferred package manager.
You can override this and force it to use npm with the --use-npm
flag.
--log-level
You can control how much output is generated during the installation and setup with this flag. Valid options are silent
, info
and verbose
. The default is silent
Example:
npx @bb-vendure/create my-app --log-level verbose