npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@meecolabs/react-clock

v2.4.1

Published

An analog clock for your React app.

Downloads

4

Readme

downloads build dependencies dev dependencies tested with jest

React-Clock

An analog clock for your React app.

tl;dr

  • Install by executing npm install react-clock or yarn add react-clock.
  • Import by adding import Clock from 'react-clock'.
  • Use by adding <Clock />.

Demo

Minimal demo page is included in sample directory.

Online demo is also available!

Installation

Add React-Clock to your project by executing npm install react-clock or yarn add react-clock.

Usage

Here's an example of basic usage:

import React, { Component } from 'react';
import Clock from 'react-clock';

class MyApp extends Component {
  state = {
    date: new Date(),
  }

  componentDidMount() {
    setInterval(
      () => this.setState({ date: new Date() }),
      1000
    );
  }

  render() {
    return (
      <div>
        <p>Current time:</p>
        <Clock
          value={this.state.date}
        />
      </div>
    );
  }
}

Custom styling

If you don't want to use default React-Clock styling to build upon it, you can import React-Clock by using import Clock from 'react-clock/dist/entry.nostyle'; instead.

User guide

Clock

Displays a complete clock.

Props

|Prop name|Description|Example values| |----|----|----| |className|Defines class name(s) that will be added along with "react-clock" to the main React-Clock <time> element.|String: "class1 class2"Array of strings: ["class1", "class2 class3"]| |hourHandLength|Defines the length of an hour hand, in %. Defaults to 50.|80| |hourHandOppositeLength|Defines the length of the part of an hour hand on the opposite side the hand is pointing to, in %. Defaults to 10.|20| |hourHandWidth|Defines the width of an hour hand, in pixels. Defaults to 4.|3| |hourMarksLength|Defines the length of hour marks, in %. Defaults to 10.|8| |hourMarksWidth|Defines the width of hour marks, in pixels. Defaults to 3.|2| |minuteHandLength|Defines the length of a minute hand, in %. Defaults to 70.|80| |minuteHandOppositeLength|Defines the length of the part of a minute hand on the opposite side the hand is pointing to, in %. Defaults to 10.|20| |minuteHandWidth|Defines the width of a minute hand, in pixels. Defaults to 2.|3| |minuteMarksLength|Defines the length of minute marks, in %. Defaults to 6.|8| |minuteMarksWidth|Defines the width of a minute hand, in pixels. Defaults to 1.|2| |renderHourMarks|Defines whether hour marks shall be rendered. Defaults to true.|false| |renderMinuteHand|Defines whether minute hand shall be rendered. Defaults to true.|false| |renderMinuteMarks|Defines whether minute marks shall be rendered. Defaults to true.|false| |renderNumbers|Defined whether numbers shall be rendered. Defaults to false.|true| |renderSecondHand|Defines whether second hand shall be rendered. Defaults to true.|false| |secondHandLength|Defines the length of a second hand, in %. Defaults to 90.|80| |secondHandOppositeLength|Defines the length of the part of a second hand on the opposite side the hand is pointing to, in %. Defaults to 10.|20| |secondHandWidth|Defines the width of a second hand, in pixels. Defaults to 1.|2| |style|Css style object.|| |value|Defines the value of the clock. Must be provided.|Date: new Date()|

License

The MIT License.

Author