https://github.com/robertjgabriel/text-scraping
A node nodule that scraps the text out of a website into an array
https://github.com/robertjgabriel/text-scraping
node-module scrap side-project text-score
Last synced: 26 days ago
JSON representation
A node nodule that scraps the text out of a website into an array
- Host: GitHub
- URL: https://github.com/robertjgabriel/text-scraping
- Owner: RobertJGabriel
- Created: 2015-11-07T16:04:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-21T23:25:52.000Z (about 10 years ago)
- Last Synced: 2025-03-03T03:28:44.654Z (over 1 year ago)
- Topics: node-module, scrap, side-project, text-score
- Language: JavaScript
- Size: 140 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# About
This project does what it says on the tin. Send the url and it will scrap the page and parse the html from it returning the text from it.
# Installation
```shell
npm install text-scraping
```
# Usage
You need to pass one thing into it.
## Test
Run the example by running
``` npm test ```
## Code
```javascript
var text-scraping = require('text-scraping');
scraping("http://www.projectbird.com", function(response) {
console.log(response);//Returns text
});
```
# Example
As you can see
Stupid project really but a nice on all the same.
