pathname$

May 16, 2020 ยท View on GitHub

ReadonlyBehaviorSubject that tracks emits on changes in pathname property of window.location. Is stubbed to also work on sever.

import { pathname$ } from 'rx-use';

pathname$.getValue(); // /my/path

pathname$.subscribe((pathname) => {
  console.log(pathname); // /my/path2
});