Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rocktimsaikia committed Oct 14, 2020
1 parent 891d61e commit 1bc1d7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# meta-fetcher :mag_right:

> Tiny URL meta-data fetcher that scraps the meta-data of a given `URL` string.
> Tiny URL meta-data fetcher that scraps the meta-data of a given `URL` string.
![Travis (.com) branch](https://img.shields.io/travis/com/rocktimsaikia/meta-fetcher/master)
[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo)
Expand All @@ -15,12 +15,12 @@ npm install meta-fetcher

## Basic Usage
```js
const {fetchMetaData} = require('meta-fetcher');
const fetchMetaData = require('meta-fetcher');

(async () => {
const result = await fetchMetaData('https://hoppscotch.io/');
console.log(result);

/*
{
basic_metadata: {
Expand All @@ -47,7 +47,7 @@ const {fetchMetaData} = require('meta-fetcher');
'https://hoppscotch.io/_nuxt/icons/icon_64x64.9834b3.png'
]
}
*/
*/
})();

```
Expand Down

0 comments on commit 1bc1d7b

Please sign in to comment.