A Node.js module to fetch HTML meta tags and custom meta tags from a remote URL.
npm install metagetall --save
const metagetall = require('metagetall');
metagetall.fetch('https://altcampus.io').then(res=>{console.log(res);});
Response will be an Object containing all the meta tags from the URL. All tags are output in the example above.
"node-fetch": "^2.6.0"
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D