An open API service indexing awesome lists of open source software.

https://github.com/legitcode/id

a small utility for generating unique id's (useful for React)
https://github.com/legitcode/id

Last synced: 10 months ago
JSON representation

a small utility for generating unique id's (useful for React)

Awesome Lists containing this project

README

          

##Legit ID

I was tired of making a function that generates a unique id for my React keys, so i made this simple thing

##Install

`npm install legit-id --save`

##example

~~~js
import 'legit-id'

'test'.id // -> test-1
'test'.id // -> test-2
'awesome'.id // -> awesome-3
~~~