diff --git a/README.md b/README.md index 0ce41812793dcdc9a5d149f4e653fd32c0300a0e..1e4c0a9cbe1e4aabc3284f6a5200174fe14f2d9c 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,16 @@ Handle document meta/head tags in isomorphic react with ease. Handling title and meta/head tags in a isomporhic react is tricky. Its declarative to define those tags within the component, but they need to be moved on document head on client side as well as server side. While there are other modules which helps with the use-case like <a href="https://github.com/nfl/react-helmet" target="_blank">react-helmet</a> and <a href="https://github.com/kodyl/react-document-meta" target="_blank">react-document-meta</a>, but they require to define those tags in a object literal. react-meta-tags allow you to write those tags in a declarative way and in normal jsx format. ### Install -Through npm -`npm install react-meta-tags --save` -Or get compiled development and production version from ./dist +#### npm +```sh +npm install @zandor300/react-meta-tags +``` + +#### yarn +```sh +yarn add @zandor300/react-meta-tags +``` ### Usage