问题标签 [polymer-cli]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
polymer - 初始化聚合物cli的标志?
我查看了新的Polymer CLIhelp
的for但我看不到任何标志来减少下载的 Bower 包的数量,特别是如果它用于新元素,默认情况下我并不真正需要它,或者如果我需要它,我可以稍后添加。有任何想法吗?init
init
paper-ripple
polymer - 聚合物服务和服务工作者
我正在尝试开始调试我的 Polymer 应用程序。我通过复制我认为的东西来手工制作它PolymerCLI
Polymer init
。
我不确定什么正在加载服务人员。用于开发的默认设置只是打了一个console.info()
电话,说它已被禁用用于开发。
当我Polymer serve
过去在 localhost:8080 上为我的应用程序提供服务时,我收到了 console.info 消息,尽管我没有实际加载文件的地方service-worker.js
。因为应用程序要复杂得多(而且我正在尝试使用 http/2),所以我也有自己的基于节点的服务器。当我运行它然后在浏览器中获取我的应用程序时,service-worker.js 不会被加载和运行。
正在Polymer serve
做什么来启用它?
polymer - Polymer 应用程序如何使用 polymer.json 文件?
使用 Polymer CLI 后,会生成一个 polymer.json 文件。我很难谷歌搜索/查找有关此文件的用途和方式的信息。有人可以解释这个文件如何影响我的应用程序吗?
polymer - How to view the Polymerfire demo using Polymer’s `polymer serve` polyserve server?
I want to view this demo of Polymerfire in my browser.
I expect to see the demo run in my browser. Instead, I see a blank page and the following console error.
console.log.error.messageGET http://localhost:8080/ 404 (Not Found)
Navigated to http://localhost:8080/
I used the following procedure:
- I installed the Polymer-CLI multi-tool per the instructions found here.
- I created a project using the Polymer Starter Kit (PSK).
- I named the project
my-app
. - I installed the Github repo found here using the CLI:
bower install ---save firebase/polymerfire
- I opened the terminal and navigated to the app's root directory.
cd path/to/my-app
- I ran the following Polymer-CLI command (per the instructions found here).
polymer serve
What can I do to try and solve this so I can see the demo run in my browser?
nginx - Build a static site with polymer-cli
Ok I'm new to Polymer, after seeing the main page and Google IO 2016 video, I wanted to try it out, and right now I created a basic web application with it.
I managed to get it build and running it through the "polymer serve" command, but now that I want to release it to a production environment (I have an nginx cluster), how do I build the application to just a bunch of static website files?
I executed "polymer build" and I see the build folder and it contains 2 folders: bundled and unbundled, and inside them there are the bower_components, src and test folders as well as other stuff for running it through "polymer serve" but there's not a build/dist of build/static folder that I can copy into nginx so the application is served through it.
BTW, what I mean about a dist folder is without a readme, bower.json, test, bower_components, etc. just the pure needed HTML, CSS, JS, etc files that need to be served through nginx (or any other web server) as static file web content.
I went through the documentation but there's no details on how to do such task.
Any suggestions on how to build a static content folder for serving my polymer web app through nginx?
Thanks!
caching - 使用 polymer-cli 进行缓存管理的最佳实践
我正在使用polymer-cli来引导和管理我的聚合物项目。
我知道缓存管理的最佳实践是更新每个版本中的文件名,这样您就可以将缓存设置为永不过期。
但是 polymer-cli 团队还没有实现,那么有什么替代方案呢?
javascript - Polymer 1.6 和 Polymer-cli,从自定义元素中访问应用程序属性
使用 polymer-cli 工具和购物车样板作为起点,我制作了一个简单的模型来说明用例。
假设您的 index.html 文件包含“test-app.html”和匹配的标签
现在,假设 test-app.html 包含以下内容(同样是 my-app.html 的简化副本):
现在,test-element.html
所以,真正的问题是,test-element 如何访问主应用程序中的属性“siteUrl”?我打算将此变量设为只读,并从其他自定义元素访问它。我更喜欢这种方法 VS 将 siteUrl 作为属性传递给 test-element 元素。
你怎么看?
polymer - Polymer Starter Kit vs Polymer App Toolbox
Polymer Starter Kit和Polymer Starter Kit有什么区别Polymer App Toolbox?
两者都是 Web 组件、构建和测试工具以及用于使用 Polymer 构建渐进式 Web 应用程序的 Material Design 模板的集合。
我的新项目应该基于哪一个?
javascript - Polymer-CLI: $ polymer build ... 无法丑化文件 ... bower_components/**/*
这是我的设置...
操作系统: Windows 10(64 位)
Git SCM: 2.7.0 (MINGW64)
节点: 6.3.0
Polymer-CLI: 0.12.0
有任何想法吗?
polymer-1.0 - 如何使用 Polymer 应用程序元素为每个页面使用不同的工具栏
我正在尝试使用 Polymer 创建一个应用程序app elements
,基于polymer-cli
使用app-drawer-template
.
我遇到的问题是我想app-header
在每个子页面中使用不同的,但我似乎无法做到这一点。
我已经尝试将<app-header>
移到子页面中,它有点工作,但drawer-toggle
<paper-icon-button>
永久显示。
有没有办法让应用程序标题抽屉从子页面正确切换?