ember-cli-deploy / ember-cli-deploy/ember-cli-deploy-lightning-pack
support service worker / pwa's
- Ngôn ngữ chính
- JavaScript
- Star
- 37
- Fork
- 20
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
follow up to conversation with @lukemelia on slack...
so to get the service worker working with the lightning approach here’s what we had to do:
* alias ember-cli-deploy-redis to upload both index and sw.js to parallel nodes: `app-name:{index|sw}:current-content`
```js
// config/deploy.js
var moduleName = require('../package.json').name;
var ENV = {
pipeline: {
alias: {
redis: { as: ['redis-index', 'redis-sw']}
}
},
"redis-index": {
allowOverwrite: true,
keyPrefix: `${moduleName}:index`,
filePattern: 'index.html'
},
"redis-sw": {
allowOverwrite: true,
keyPrefix: `${moduleName}:sw`,
filePattern: 'sw.js'
},
gzip: {
// not required but makes troubleshooting a lot easier
// be sure to add 'content-encoding: gzip' to response if gzip is enabled
ignorePattern: 'sw.js'
},
// …
};
```
* We then had to update our ember-lightning server to detect requests for sw.js and to respond with the appropriate content where it was always responding with the index.html content previously for any request of a given domain.
* One thing to note is that supporting the ref based preview url isn’t practical here for the service worker itself as we’d need to modify the path embedded in the index file to request this specific version of the service worker. This is certainly possible but isn’t anything that we tackled for now.
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Hướng nghiên cứu
Bắt đầu với ví dụ config/deploy.js và theo dõi cách máy chủ ember-lightning xử lý các yêu cầu đối với sw.js so với index.html. Công việc hoàn tất khi nội dung của service worker có thể được triển khai và phục vụ cùng với index của ứng dụng, đồng thời hành vi xem trước dựa trên ref được giải quyết hoặc ghi lại rõ ràng.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- javascript
- Lĩnh vực
- devops
- Loại issue
- Tính năng
- Độ khó
- 5/5
- Thời gian dự kiến
- Hơn một tuần
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Cần làm rõ
- Mức phù hợp với người mới
- 32/100