@craftzdog/react-native-unique-id

1.0.4 • Public • Published

react-native-unique-id

generates a guid and stores it in the async store This is supposed to identify the device / user. It creates a guid if no exists and stores it in the AsyncStorage. If a Guid exists, this will be returned

npm Package npm Package travis-ci.org js-standard-style license

Usage

npm install react-native-unique-id --save
const uniqueId = require("react-native-unique-id");

uniqueId()
  .then(id => console.log(id))
  .catch(error => console.error(error));

// or callback style

uniqueId((error, id) => {
  if (error) return console.error(error);
  console.log(id);
});

Twitter URL GitHub stars

Package Sidebar

Install

npm i @craftzdog/react-native-unique-id

Weekly Downloads

1

Version

1.0.4

License

MIT

Unpacked Size

5.35 kB

Total Files

6

Last publish

Collaborators

  • craftzdog