react-moonphase

Display lunar phase with React and Pixi.js

Usage no npm install needed!

<script type="module">
  import reactMoonphase from 'https://cdn.skypack.dev/react-moonphase';
</script>

README

react-moonphase Build Status Greenkeeper badge

Display lunar phase with React and Pixi.js

Screenshot of moon phase

Demo

https://nikolas.github.io/react-moonphase/

Usage

  • npm install --save react-moonphase
import MoonPhaseView from 'react-moonphase';

// ...

render() {
    return (
        <MoonPhaseView
            moonPhase={this.state.moonPhase}
            onMoonPhaseUpdate={this.onMoonPhaseUpdate.bind(this)} />
    );
}