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

react-native-aztec

v0.1.8

Published

# react-native-aztec

Downloads

45

Readme

Notice: We have git subtree'd this repo into https://github.com/wordpress-mobile/gutenberg-mobile. It is recommended that any new development happens on that one instead. Thanks!

react-native-aztec

Wrapping Aztec Android and Aztec iOS in a React Native component

License

This work is dual licensed under the Mozilla Public License version 2.0 (MPL-2.0) or the GNU General Public License v2.0 or later (GPL-2.0).

You can choose between one of them, or both if you use this work.

Android: Run the example app

Make sure to have an emulator running or an Android device connected, and then:

$ cd example/
$ yarn clean:install
$ yarn android

This will build the Android library (via gradle) and example app, then launch the main example activity on your connected device and run the Metro bundler at the same time.

iOS: Run the example app

Before being able to run the Example App, you'll need to install Carthage and the dependencies for this project:

cd ios
carthage bootstrap --platform iOS

Then go back to the root directory of the project and do:

$ cd example/
$ yarn clean:install
$ yarn ios

This will compile the example project, launch metro, run the simulator and run the app.

FAQ / Troubleshooting

Q: The example app doesn't run

A: Make sure you have yarn and babel installed (https://yarnpkg.com/lang/en/docs/install/)

Q: The example app gets compiled but ReactNative cannot connect to Metro bundler (I'm on a real device attached through USB)

A: To debug on the device through USB, remember to revert ports before launching metro: adb reverse tcp:8081 tcp:8081

Q: The example app gets compiled but ReactNative shows an error

A: try running, from the root folder in the project

$ cd example/
$ yarn start --reset-cache

Open a new shell window and run either of these depending on the platform:

$ yarn android

or

$ yarn ios