https://github.com/jayrbolton/flyd-url
Flyd URL object stream
https://github.com/jayrbolton/flyd-url
Last synced: 2 months ago
JSON representation
Flyd URL object stream
- Host: GitHub
- URL: https://github.com/jayrbolton/flyd-url
- Owner: jayrbolton
- Created: 2016-04-29T18:55:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-29T22:01:28.000Z (about 9 years ago)
- Last Synced: 2025-02-05T09:48:38.079Z (3 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This gives you a stream of url data for the page. Every time the url changes you will get a new url data object on the stream.
The url data object comes from the [url](https://www.npmjs.com/package/url) npm module. Please reference documentation for that module to handle the url objects on the stream
```js
import flyd from 'flyd'
import urlStream from 'flyd-url'flyd.map(
url => console.log('Url has been updated: ', url)
, urlStream
)
```