文件名称:foo:开始使用 ember-cli
文件大小:159KB
文件格式:ZIP
更新时间:2024-06-24 18:17:00
JavaScript
富 使用 ember-cli 并开始使用生成器 开始设置 首先,您需要安装 ember-cli: npm install -g ember-cli 。 完成后,您可以使用命令ember new foo创建一个新项目,这将创建foo应用程序结构。 此时我们不需要 ember-data,所以让我们摆脱它和 csp,它会抛出一些我们不需要为此项目担心的警告: bower uninstall --save ember-data && npm uninstall --save-dev ember-data ember-cli-content-security-policy 我们还想使用项目文件夹结构来使事情井井有条。 为此,请按照下列步骤操作: 进入app/目录并删除除styles之外的所有文件夹 编辑.ember-cli文件并添加这一行: "usePods": true 在config/
【文件预览】:
foo-master
----.gitignore(241B)
----README.md(4KB)
----public()
--------robots.txt(51B)
--------crossdomain.xml(585B)
----.bowerrc(60B)
----.ember-cli(299B)
----tests()
--------test-helper.js(112B)
--------unit()
--------.jshintrc(814B)
--------helpers()
--------index.html(954B)
----app()
--------router.js(218B)
--------app.js(420B)
--------pods()
--------styles()
--------index.html(608B)
----.jshintrc(518B)
----bower.json(457B)
----package.json(867B)
----dist()
--------robots.txt(51B)
--------crossdomain.xml(585B)
--------index.html(1KB)
--------assets()
----vendor()
--------.gitkeep(0B)
----testem.json(198B)
----config()
--------environment.js(1KB)
----.travis.yml(318B)
----.editorconfig(543B)
----Brocfile.js(708B)