https://github.com/krishcdbry/url-scraper
Url scraper which takes the text input and finds the links/urls, scraps them using cheerio and will returns an object with original text, parsed text (using npm-text-parser) and array of objects where each object contains scraped webpage's information.
https://github.com/krishcdbry/url-scraper
cheerio scrap text-parser url-scraper
Last synced: 3 months ago
JSON representation
Url scraper which takes the text input and finds the links/urls, scraps them using cheerio and will returns an object with original text, parsed text (using npm-text-parser) and array of objects where each object contains scraped webpage's information.
- Host: GitHub
- URL: https://github.com/krishcdbry/url-scraper
- Owner: krishcdbry
- License: mit
- Created: 2016-09-10T01:14:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-01T12:50:22.000Z (about 9 years ago)
- Last Synced: 2025-09-15T06:12:09.242Z (7 months ago)
- Topics: cheerio, scrap, text-parser, url-scraper
- Language: JavaScript
- Size: 1.56 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
is-property
===========
Tests if a property of a JavaScript object can be accessed using the dot (.) notation or if it must be enclosed in brackets, (ie use x[" ... "])
Example
-------
```javascript
var isProperty = require("is-property")
console.log(isProperty("foo")) //Prints true
console.log(isProperty("0")) //Prints false
```
Install
-------
npm install is-property
### `require("is-property")(str)`
Checks if str is a property
* `str` is a string which we will test if it is a property or not
**Returns** true or false depending if str is a property
## Credits
(c) 2013 Mikola Lysenko. MIT License