Installation
Install Feflow CLI
Feflow support Node 6.0 and above, you can use follow command to install it:
Use npm
npm install @feflow/cli -g
use yarn
npm install yarn -g
yarn global add @feflow/cli
fef config set packageManager yarn
If you are installing for the first time, you need to run Feflow
once to initialize:
fef
After install, you can run feflow
to init:
fef
Here you may write the npm registry and npm proxy config to make Feflow download package from NPM or a private registry in a smooth network. For example, if you want to use Taobao registry, you must write https://registry.npm.taobao.org here.
If you accidentally use the default configuration, you can also configure it with the following command. Take the Taobao registry as an example:
fef config set registry https://registry.npm.taobao.org
Read this can get more informations about feflow config command.
Install Scaffold
Feflow core doesn't contain scaffold, you should install it via Feflow. To be simple, you can install generator-ivweb to be continue.
feflow install generator-ivweb
Read this can get more informations about scaffold.
Now, the scaffold is installed successfully, you can start creating your project.