Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ujjwalguptaofficial/readmeta
Cli for previewing meta tags for web application.
https://github.com/ujjwalguptaofficial/readmeta
cli metatags previewer render spa
Last synced: 23 days ago
JSON representation
Cli for previewing meta tags for web application.
- Host: GitHub
- URL: https://github.com/ujjwalguptaofficial/readmeta
- Owner: ujjwalguptaofficial
- License: mit
- Created: 2020-08-25T16:40:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T04:12:32.000Z (over 4 years ago)
- Last Synced: 2024-12-08T00:44:48.062Z (26 days ago)
- Topics: cli, metatags, previewer, render, spa
- Language: TypeScript
- Homepage:
- Size: 287 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# readmeta
readmeta is cli package built in nodejs. It helps you to test and preview your meta tags. You can get all your meta tags just by runing a single command.
readmeta also support single page application which change meta tags at run time.
# Install
npm i readmeta -g
**Note:** - You might get permission issue while installing this package. In this case please run command as sudo or with admin priviledge.
### Still not working
try this
```
sudo npm i readmeta -g --unsafe-perm=true
```# Example
## Fetch meta
This will show all meta tags in console
```
readmeta --url=google.com
```OR (with http included)
```
readmeta --url=http://google.com
```## Preview meta
This will open a browser and show how your app will be previewed in different app like facebook, whatsapp, twitter etc.
```
readmeta --url=http://google.com --preview
```