Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 395 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 395 Bytes

create-awesome-api

用于快速创建api模块的脚手架

快速开始

with yarn

yarn create awesome-api my_api
# or
# npx create-awesome-api my_api -p npm
cd my_api
yarn start

with npm

yarn create awesome-api my_api -p npm
# or
# npx create-awesome-api my_api -p npm
cd my_api
npm run start

构建

# in project directory
yarn build