Is there a way to implement a Parameter in Angular routes that resembles the NodeJs style? I have a route like **http://myhost.domain.com/signin**" and I want to pass an id for the signin request. Although I can achieve this using **http://myhost.domain.com/signin?id=123456"**, my preference is to follow the NodeJs style where it would appear as ****
Currently, I am extracting parameters in this manner, but when using the above URL, it cannot be located because it seems to be a level deeper route.
ngOnInit() {
this.route.queryParams
.subscribe(params => {
console.log(params);
}
);