An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

![alt text](assets/img/readme.jpg "Firebase Yeti")
# 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.

![alt text](assets/img/screenshot.png "Firebase Yeti")