Ionic项目创建

303次阅读
没有评论

How to Install The Ionic Framework CLI to Build Mobile Apps

npm uninstall -g ionic // 先移除旧版本的CLI
npm install -g @ionic/cli // 安装新版本的CLI
ionic start // 运行此命令初始化项目,会打开浏览器让您填入APP名字、选择APP的icon、选择主题颜色、选择布局类型、选择框架(Angular、Vue、React),选择完成之后会让您登录,登录之后,控制台就会自动下载template并且安装依赖。

安装完成后会提示:

Your Ionic app is ready! Follow these next steps:

- Go to your new project: cd .\ionic-app
- Run ionic serve within the app directory to see your app in the browser
- Run ionic capacitor add to add a native iOS or Android project using Capacitor
- Generate your app icon and splash screens using cordova-res --skip-config --copy
- Explore the Ionic docs for components, tutorials, and more: https://ion.link/docs
- Building an enterprise app? Ionic has Enterprise Support and Features: https://ion.link/enterprise-edition

从上面的提示信息可以看到:

  • ionic serve 启动项目
  • capacitor add to add 添加Android或iOS原生支持

npm run startionic serve 的区别是什么?

正文完
 0
wujingquan
版权声明:本站原创文章,由 wujingquan 于2025-02-27发表,共计781字。
转载说明:Unless otherwise specified, all articles are published by cc-4.0 protocol. Please indicate the source of reprint.
评论(没有评论)