0.2.0 • Published 11 years ago
fetchog v0.2.0
Fetchog
Fetchog is an npm package fetching a given URL, returns its title, description, image.
Usage
Install
npm install --save fetchogExample
var fetchog = require('fetchog');
fetchog.fetch('http://www.yahoo.com', function(err, meta) {
console.log('title: ', meta.title);
console.log('description: ', meta.description);
console.log('image: ', meta.image);
console.log('url: ', meta.url);
});Output
title: Yahoo
description: A new welcome to Yahoo. The new Yahoo experience makes it easier to discover the news and information that you care about most. It's the web ordered for you.
image: https://s.yimg.com/dh/ap/default/130909/y_200_a.png
url: https://www.yahoo.com/Resposne Data
titlePage title, if there is aog:titlemeta tag, it will override the<title>tag value.descriptionPage description, if there is aog:descriptionmeta tag, it will override the<meta name='description' content='xxx'>tag value.imagePage image, it comes fromog:imagemeta tag.urlPage url, if there is aog:urlmeta tag, it will override the original request url value.uriPage uri object, parsed by uri-js.imagesAll images on this page.imagesAll links on this page.metaAll the meta tags that with apropertyornameattribute. e.g<meta property="og:title" content="Yahoo">,<meta name="description" content="A new welcome to Yahoo.">
Tests
$ npm install -g mochanpm testLicense (MIT)
Copyright (c) 2014 Jim Liu <junminliu@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.