react-referer

1.0.1 • Public • Published

react-referer

Isomorphic function to load the referer

Isomorphic referer!

You can also plug it directly with a Node.js request by adding just before the renderToString: reactReferer.plugToRequest(req);

Download

NPM: npm install react-referer

Examples

import { Component } from 'react';
import reactReferer from 'react-referer';
 
export default class MyApp extends Component {
  constructor(props) {
    super(props);
 
    this.state =  { referer: reactReferer.referer() };
  }
 
  render() {
    return (
      <div>
        {this.state.referer}
      </div>
    );
  }
}

License

This project is under the MIT license. You are free to do whatever you want with it.

Package Sidebar

Install

npm i react-referer

Weekly Downloads

129

Version

1.0.1

License

MIT

Last publish

Collaborators

  • kevinrademan