Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-github-fork-ribbon

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-github-fork-ribbon

Pure inline style github fork ribbon on React component

  • 0.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.3K
increased by4.04%
Maintainers
1
Weekly downloads
 
Created
Source

React GitHub Fork Ribbon

npm Dependency Status

Pure inline style github fork ribbon on React component. The inline style css is from "Fork me on GitHub" CSS ribbon.

React = 0.12React >= 0.13
Version<= 0.2>= 0.3

Usage

npm install react-github-fork-ribbon

Ex.

var React            = require('react');
var GitHubForkRibbon = require('react-github-fork-ribbon');

var Content = React.createClass({

  render: function () {
    return (
      <GitHubForkRibbon href="//www.google.com" 
                        target="_blank" 
                        position="right">
        Fork me on GitHub
      </GitHubForkRibbon>
    );
  }
});

React.render(
  <Content />,
  document.getElementById('content')
);

Attribute

href

It would be <a> tag's attribute href

target

It would be <a> tag's attribute target

position

It has four positions.

  • left
  • right
  • left-bottom
  • right-bottom

color

It has four color.

  • red
  • orange
  • black
  • green

Release Notes

Version 0.4.0 - 2015/06/28

  • Switch to vanilla inline styles. PR#7
  • Update Dev-dependencies version. babel => 5.6.14, browserify => 10.2.4

Version 0.3.0 - 2015/03/28

  • Support react 0.13.x and react-style 0.5.x version
  • Use ES6 feature.

Version 0.2.0 - 2015/03/07

  • Add attribute: color
  • Transpile into vanilla js during prepublish.

Version 0.1.0 - 2015/01/16

  • Init
  • Add attribute: href, target, position

Contribute

devDependency Status

  1. Fork it.
  2. Create your feature-branch git checkout -b your-new-feature-branch
  3. Commit your change git commit -am 'Add new feature'
  4. Push to the branch git push origin your-new-feature-branch
  5. Create new Pull Request with master branch

License

The MIT License (MIT)

Copyright (c) 2015 Lee < jessy1092@gmail.com >

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 28 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc