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

r3dynew

v1.0.9

Published

<br/> <div align="center"> <a href="www.r3dyui.com"> <img src="https://i.imgur.com/mXk9ke7.jpeg" height="350" align="center" alt="header" /> </a> <br/> <br/>

Downloads

14

Readme

License

Documentation

R3DY UI is an open source React Library that contains a number of 3D components. With R3DY, you import your 3D components just like any other React component. These components are interactive and can be implemented with little to no knowledge of 3D rendering.

R3DY UI is fully compatible with any React project, including additional frameworks such as NextJS and Remix.

Components

The library comes with 5 prebuilt components which can be modified through a series of properties.

If you'd like to see a new component, head over to The R3DY UI issues page to add your suggestions!

Installation

Use the package manager npm to install R3DY UI.

npm install r3dy

Once you've installed the npm package, its time to add a component to your project. In the code snipped below, you can see how this is implemented.

Usage Example

import { Canvas } from '@react-three/fiber'
import { TextField } from 'r3dy'

# returns 'a react component containing the r3dy element'
export default function myComponent() {
  return (
    <div>
      <Canvas shadows>
         <TextField/>
      </Canvas>
    </div>
  )
}

NOTE: You want to make sure that you have imported the necessary dependencies. Import the desired component from r3dy as well as Canvas from @react-three/fiber. Now that you've included dependencies, wrap your component in a Canvas tag. Make sure to include shadows in the Canvas tag or they will not show up.

The div is meant to contain the Canvas. By nature, Canvas will try to fill as much space as allowed. If it is not nested in a div and you have any sort of margin or padding, it will constantly expand to fit those margins.

Contributing

R3DY UI is an open-source product maintained by OS Labs, an open-source tech accelerator.

We welcome contributions and feedback from the community to make R3DY UI even better. If you're interested in simplifying 3D in your React projects, check out our documentation and join us on this exciting journey!

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Documentation

Our full documentation can be found here.

Contributing

We value our contributors. Read more about us.

License

MIT