
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Fetchog is an npm package fetching a given URL, returns its title, description, image.
Fetchog is an npm package fetching a given URL, returns its title, description, image.
npm install --save fetchog
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/
title
Page title, if there is a og:title
meta tag, it will override the <title>
tag value.description
Page description, if there is a og:description
meta tag, it will override the <meta name='description' content='xxx'>
tag value.image
Page image, it comes from og:image
meta tag.url
Page url, if there is a og:url
meta tag, it will override the original request url value.uri
Page uri object, parsed by uri-js.images
All images on this page.images
All links on this page.meta
All the meta tags that with a property
or name
attribute. e.g <meta property="og:title" content="Yahoo">
, <meta name="description" content="A new welcome to Yahoo.">
$ npm install -g mocha
npm test
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.
FAQs
Fetchog is an npm package fetching a given URL, returns its title, description, image.
The npm package fetchog receives a total of 4 weekly downloads. As such, fetchog popularity was classified as not popular.
We found that fetchog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.