In react-router-redux 5.x, ConnectedRouter takes place of HashRouter.
I cannot find much information about v5.
How do I use hash-based routing?
Related
I upgraded my angular project from 2 to 13 version and after that multiple tabs are not working properlyenter image description here
In order to help you, we may need more information. But, from my experience, this is probably a problem with a deprecated package that doesnt work with newest angular versions. So, while upgrading to newer major angular versions:
Skipping major versions is not recommended.
You have to upgrade all third-party dependecies in your package.json to support the angular version that you are using. In order to do this, you should go to each corresponding library's documentation and read information about version compatibility.
Visit https://update.angular.io for more detailed information.
Now that angular can finally generate libraries a bit more comfortably in version 6, are the libraries generated compatible to be imported in older versions, just like any other angular library?
It depends on the library, as the new angular libraries probably function like any other upgraded library pack. If the libraries are included only in angular 6, then I would imagine that the libraries won't import into the older versioned app. If the library existed in angular 5 or older, then the library should import without any problem.
Other types of programming languages, like C#, Java, and Python, function this way, so angular would most likely work that same way, given its design with Typescript. Therefore, if the app returns a problem or error involving this, then you should upgrade the app to the newer version, and if the app is older than angular 5, upgrade the app one version at a time.
We have developed our web app using polymer 0.5. We haven't upgraded it yet, there is a request for a new page creation. Question is, can we have that page alone created using polymer 2, whereas the rest of the app still runs in 0.5.
Also request to provide some pointers on login page custom element. It will be a simple user/password field.
Thanks,
Use information in this post https://jcrowther.io/2015/06/01/upgrading-from-polymer-v0-5-v1-0/ to migrate to 1.0 and then make minor changes to run on 1.9 and finaly you can use Polymer linter avaiable in https://github.com/Polymer/polymer-linter with --fix option in polymer-2-hybrid mode.
There is no way that 0.5 version elements will be complatible with 2.0. There have been few changes.
Upgrading to version 1.9.1 should be ok. Without any hard problems. So you should first try this and repair some errors that might occur. Then read documentation about upgrading to Polymer 2.0. You will be using hybrid elements. This is important, because in Polymer 2.0 there are 2 choices of how to define elements.
If you don't have that much time playing with upgrading, or is your app simply large, then upgrading to 1.9.1 should be the best option.
Is anyone else finding it hard to locate an official documentation and/or a working example showing how to load modules?
Loading a module is core to web development, it should be easy.
You can't load es6 modules in a browser yet. The export and import keywords are not supported by any browser. Most uses use a transpiler to convert the modules to CommonJS which can be loaded. Or use a bundler to package them together.
We develop web application and we are going to deploy it on JBoss.
Now we use JSF, Facelets, Webflow, JMX, Spring.
We are going to use JMS(ActiveMQ).
Maybe in the future we will use EJB3. But for near future we will not use it.
What configuration of JBoss would be better to use - web, standard, default?
And why?
Go for the smallest config that does what you need. The "web" configuration seems to have everything you need, including ejb3 support.
Remember, the configurations in the distribution are just examples. It's perfectly acceptable to create custom server configs by copying the deployers and libs around to produce a config that does exactly what you need.
I've never found the need to use anything other than default, sometimes removing some of the config. And that's included JMS, EJB, Spring, Webflow, etc.
I you are using JBoss AS 5.1.X, I recommend this book: http://www.amazon.com/JBoss-AS-Development-Marchioni-Francesco/dp/1847196829
On page 31 there is a detailed explanation about the five provided configurations.