Main Idea of this addon - ability to reload changed components without application reloading.
This addon is continuation of the project ember-cli-hot-loader and includes part of it's codebase.
2.15.1
2.16
Many thanks to Toran Billups / @toranb for this huge work, support and inspiration!
ember-cli-hot-loader
implemented using middleware for ember-resolver
and wrapping
components.ember-ast-hot-load
implemented using compile-time templates ast
transformations.Point | ember-ast-hot-load | ember-cli-hot-loader |
---|---|---|
Tagless components | + | +/- |
Glimmer components | + | - |
Classic route templates | + | - |
MU route templates | + | - |
reducers reloading | - | + |
performance impact | low | middle |
typescript support | + | + |
Nested components | + | +/- |
code limitations | - | + |
Ember 2.x | ? | + |
Ember 3.4+ | + | - |
Fastboot | + | - |
Sparkles components | + | - |
Hooked components | + | - |
Custom components | + | - |
Component wrappers | - | + |
AST integration | + | - |
Resolver 5 support | + | - |
MU support | + | - |
Addons hot-reload | + | - |
ember install ember-ast-hot-load
It should just work without any config.
After the installing, simply run ember serve
as you normally would. Any changes to component JS/HBS files will result in a hot reload (not a full page reload). If you alter a route, service, or controller ember-cli will do a full page reload.
Hot-reloading Ember helpers is not supported.
Because helpers look like components (in the AST) they will be unnecessarily wrapped, e.g. helper
-> dynamic component
-> helper
To prevent this from happening, you can exclude helpers from the hot-loader pipeline by specifying a list of helper names in the add-on config.
// ember-cli-build.js
new EmberApp(defaults, {
'ember-ast-hot-load': {
helpers: ["foo-bar", "liquid-if", ... ],
enabled: true
}
});
If you don't specify helpers
in the config the addon will continue to work, but with it will also wrap all your helpers (you can see this in the ember-inspector
components tab, e.g. helper "you-app-helper-name"
).
To get a list of all the helpers in your app that hot-reload might think are components, run this script in a debug console in your browner. You can then use this list to configure the add-on.
var componentLikeHelpers = Object.keys(require.entries)
.filter(name=>(name.includes('/helpers/')|| name.includes('/helper')))
.filter(name=>!name.includes('/-')).map(name=>{
let path = name.split('/helpers/');
return path.pop();
}).filter(name=>!name.includes('/')).uniq();
console.log(JSON.stringify(componentLikeHelpers))
You should also exclude ember-ast-hot-load
from production builds (to avoid unnecessary calculations)
// ember-cli-build.js
const environment = EmberApp.env();
// ...
const addonsToIgnoreInProdBuilds = [
environment === 'production' ? 'ember-ast-hot-load' : null
].filter(name => name !== null);
new EmberApp(defaults, {
addons: {
blacklist: addonsToIgnoreInProdBuilds
}
});
service('hot-loader')
.registerWillHotReload(onHotReload)
.unregisterWillHotReload(onHotReload)
.registerWillLiveReload(onLiveReload)
.unregisterWillLiveReload(onLiveReload)
// we need to prevent full app refresh if we can hande changed file.
function onLiveReload(event) {
if (event.modulePath.includes('redusers')) {
event.cancel = true;
requirejs.unsee('some-module');
}
}
function onHotReload(path) {
if (path.includes('redusers')) {
// do some hot-reload magic,
// for example
requirejs.resolve('some-module')
}
}
In most development environments, Ember applications are served directly from Ember's development server, e.g. http://localhost:4200.If you are using a different way of service your Ember app, you may need to override the URL that we use to reload your changes.
// config/enironment.js
if (environment === 'development') {
ENV['ember-ast-hot-load'] = {
baseUrl: 'http://app.mydomain.test:4200'
}
}
Cannot find module ember-source\dist\ember-template-compiler.js
in yarn workspaces.
root.package.json
workspaces.nohoist: ["**/ember-ast-hot-load"]
git clone <repository-url>
cd ember-ast-hot-load
yarn install
yarn lint:hbs
yarn lint:js
yarn lint:js --fix
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versionsember serve
For more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.
Flutter’s hot reload feature helps you quickly and easily experiment, build UIs, add features, and fix bugs. Hot reload works by injecting updated source code files into the running Dart Virtual Machi
Flutter’s hot reload feature helps you quickly and easily experiment, build UIs, add features, and fix bugs. Hot reload works by injecting updated source code files into the running Dart Virtual Machi
import "go/ast" Package ast declares the types used to represent syntax trees for Go packages. Index func FileExports(src *File) bool func FilterDecl(decl Decl, f Filter) bool func FilterFile(src *Fil
替换正在运行的 Epics 为新的版本可能会引起潜在的奇怪 bugs,因为 Epics 可能会维护一些内部的状态或者依赖一些外部的瞬时状态或者副作用。 想想如何去抖动跟踪,或者取消你将 store 放入阻塞的状态的在 AJAX 请求之前更阴险。这并不是 redux-observable 特有的;每个类似的中间件都会有这个问题因为它和处理副作用是绑定的。 然而实践中,我们并不确定这是否会影响到普通的
java 热更新插件,无需重启 java 进程实现代码更新,提高开发效率,节约时间去陪女朋友! 功能模块 hot-reload-core: 核心处理逻辑,编译&加载 class hot-reload-agent: javaagent 入口 hot-reload-watcher: 监听本地 java 和 class 文件变化,实现本地进程热更新 hot-reload-server: api serv
问题内容: 我一直在用Spring Boot做POC。 到目前为止,它一直都非常好并且很有希望,但是有一个主要缺点:我使用的是嵌入式服务器(即将Web应用程序包装在中),因此在开发时,我每次都必须重新构建并重新启动服务器更改CSS,HTML或JS文件。没有热交换。这确实减慢了UI开发的速度。 我可以想到几个快速修复方法,例如从其他域中加载静态资源并从local中提供静态资源,以及类似的更多变体,但