Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Next Seo | 6,586 | 86 | 52 | 4 days ago | 86 | July 20, 2022 | 68 | mit | JavaScript | |
Next SEO is a plug in that makes managing your SEO easier in Next.js projects. | ||||||||||
Wikipedia Map | 290 | 2 years ago | 4 | mit | JavaScript | |||||
A web app for visualizing the connections between Wikipedia pages. | ||||||||||
Svelte Seo | 266 | 2 months ago | 16 | June 04, 2022 | mit | JavaScript | ||||
Optimize your website for search engines and social media with meta tags, Open Graph, and JSON-LD. | ||||||||||
Hand To Hand Optimize Go | 245 | 6 years ago | May 23, 2021 | mit | Go | |||||
a simple tutorial for optimizing go program by some useful tools | ||||||||||
Graph To Seq Comment Generation | 92 | 3 years ago | 5 | Python | ||||||
Code for the paper ``Coherent Comments Generation for Chinese Articles with a Graph-to-Sequence Model'' | ||||||||||
Tensorflow_capi_sample | 87 | 5 months ago | 2 | C | ||||||
Sample code to call C API for Tensorflow 2.1 | ||||||||||
Strumentalia Seealsology | 68 | 10 months ago | 2 | other | JavaScript | |||||
see also section scraping on custom levels of depth | ||||||||||
Cgnn | 60 | 4 years ago | 2 | Python | ||||||
Replication code for the article "Learning Functional Causal Models with Generative Neural Networks" | ||||||||||
Kapok | 53 | 1 | 9 years ago | 1 | December 23, 2013 | 4 | mit | Go | ||
A knowledge graph of Wikipedia | ||||||||||
Interviewprep | 45 | 2 years ago | 8 | C++ | ||||||
A repository containing link of good interview questions |
A Laravel package to fetch all metadata of a webpage.
Perform the following operations in order to use this package
Run composer require "mobiosolutions/metatags"
in your terminal
Add Service Provider
Open config/app.php
and add mobiosolutions\metatags\Providers\MetatagsProvider::class,
to the end of providers
array:
'providers' => array(
....
mobiosolutions\metatags\Providers\MetatagsProvider::class,
),
Next under the aliases
array:
'aliases' => array(
....
'Metatags' => mobiosolutions\metatags\Facades\MetatagsFacade::class
),
After following the above steps,
// Add to your controller to get all metatags data
use Metatags;
$metadata = Metatags::get("https://example.com/");
print_r($metadata);
Get only OG ( Open Graph ) Metatages data
$getOGTags = true;
$metadata = Metatags::get("https://example.com/",$getOGTags);
OR
$metadata = Metatags::get("https://example.com/",true);
print_r($metadata);