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 🙏

© 2026 – Pkg Stats / Ryan Hefner

monkeys-native-toolbox

v1.0.8

Published

Toolbox for react native.

Readme

monkeys-native-toolbox

[IMPORTANT] This toolbox is in under heavy development right now. You should wait until published on npm. The responsibility is yours.

Toolbox for react native. It allows you to build react-native apps faster than before.

Installation

npm install monkeys-native-toolbox --save

API Reference

API reference divided by two parts.

Components

<Button />

A button component that accepts left & right icon. All Button props are accepted.

Example

<Button
  leftIcon={{ uri: "your icon uri" }}
  rightIcon={{ uri: "your icon uri" }}
>
  Hello World
</Button>

Props

  • leftIcon (optional): Left icon of the button. It works like Image source props.
  • leftIconStyle (optional): Style of the left icon. It works like Image style.
  • rightIcon (optional): Right icon of the button. It works like Image source props.
  • rightIconStyle (optional): Style of the right icon. It works like Image style.
  • containerStyle (optional): Style of the button container. It works like TouchableOpacity style.
  • textStyle (optional): Style of the button text. It works like Text style.

<MTextInput />

A TextInput component that accepts left & right icon with onPress event. All TextInput props are accepted.

Example

<MTextInput
  leftIcon={{ uri: "your icon uri" }}
  leftIconOnPress={() => alert("Left icon pressed!")}
  rightIcon={{ uri: "your icon uri" }}
  rightIconOnPress={() => alert("Right icon pressed!")}
  placeholder={"Hello"}
/>

Props

  • leftIcon (optional): Left icon of the input. It works like Image source props.
  • leftIconStyle (optional): Style of the left icon. It works like Image style.
  • leftIconOnPress (optional): A function that runs when left icon pressed.
  • rightIcon (optional): Right icon of the input. It works like Image source props.
  • rightIconStyle (optional): Style of the right icon. It works like Image style.
  • rightIconOnPress (optional): A function that runs when right icon pressed.
  • containerStyle (optional): Style of the input container. It works like View style.
  • inputStyle (optional): Style of the input. It works like TextInput style.

<EmailInput />

A TextInput component for email. Keyboard type is email-address. All TextInput and MTextInput props are accepted.

<PasswordInput />

A TextInput component for password. Secure text entry enabled by default. All TextInput and MTextInput props are accepted.

<Avatar />

An avatar component to shows user's profile picture.

Example

<Avatar source={{ uri: "your image uri" }} size={80} />

Props

  • source (required): User's profile picture source. It works like Image source props.
  • size (optional): Size of avatar component. This value used to resize avatar component's width and height.
  • onPress (optional): A function that runs when avatar pressed.
  • containerStyle (optional): Style of the avatar container. It works like TouchableOpacity style.
  • imageStyle (optional): Style of the avatar's image. It works like Image style.
  • buttonProps (optional): TouchableOpacity props.
  • imageProps (optional): Image props.

Roadmap

Components

  • [x] Button
  • [x] Text Input
  • [x] Email Input
  • [x] Password Input
  • [x] Avatar
  • [x] Loading
  • [x] Header
  • [x] Button Group
  • [x] Switch
  • [ ] Slider
  • [ ] Nav Button
  • [ ] Alert

Helpers

  • [x] Statics
  • [x] Normalize
  • [x] Api
  • [x] Location
  • [ ] File Upload