![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
ez-client-router
Advanced tools
Easy to use client router custom element. No frameworks, no polyfills, no dependencies.
npm i --save ez-client-router
You have to create a router element by extending the RouterElement base class. You can then insert your routes into the router element and it will take care fo the rest.
my-custom-router.js
import { RouterElement } from 'ez-client-router';
import { HelloWorld } from './src/pages/hello-world.js';
// Optionally declare the component if it doesn't exist.
if (customElements.get('my-hello-world') === undefined) {
customElements.define('my-hello-world', HelloWorld);
}
export class MyCustomRouter extends RouterElement {
constructor() {
super():
}
connectedCallback() {
// Create your routes.
this.routes = [
{
"path": "", // Path to the base route.
"go": () => `<my-hello-world></my-hello-world>` // Template you wish to render.
}
];
super.connectedCallback(); // Run the connected callback of the RouterElement.
}
}
index.html
<script type="module">
import { MyCustomRouter } from './src/components/my-custom-router.js';
customElements.define('my-custom-router', MyCustomRouter);
</script>
<my-custom-router></my-custom-router>
ez-client-router supports variables in the path. You can declare the variables in the path surrounding them in curly braces. Here is an example:
/blog/{postId}
The variable will be applied to the component at that path as an attribute. This route:
{
path: '/blog/{post-id}',
go: ({ variables }) => {
return `
<my-blog-post post-id="${variables['post-id']}"></my-blog-post>
`;
}
}
With this URL:
/post/123
Will render:
<my-blog-post post-id="123"></my-blog-post>
Path variables can only be composed of alphanumeric characters and hyphens.
When you try to reach a route that is not defined, the router will render a notFound message. You can customize this message by creating your own custom notFound function and setting this.innerHTML to the template you desire.
class MyRouter extends RouterElement {
constructor() {
super();
}
notFound() {
this.innerHTML = `Oh no! We couldn't find that page.`;
}
connectedCallback() {
this.routes = [
{
path: '/',
go: () => `<my-home-page></my-home-page>`
}
];
super.connectedCallback();
}
}
FAQs
An easy to use client side router custom element
We found that ez-client-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.