Package Exports
- node-link-preview
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-link-preview) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
LinkPreview
Library to return title, description and highlighted image of a site to generate a link preview.
const LinkPreview = require('link-preview')
LinkPreview.search('www.google.com', (data) => {
console.log(data); // { img: '', title: '', description: '', link: ''}
}, () => {
console.log('Error');
});