1.0.1 • Published 8 years ago

react-referer v1.0.1

Weekly downloads
291
License
MIT
Repository
-
Last release
8 years ago

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.

1.0.1

8 years ago

1.0.0

8 years ago