Paste a package.json
and get back a list of releases for each dependency that are greater than your provided version.
Backed by a SQLite DB which has releases for some dependencies to try make requests faster. If a dependency isn't in the cache, requests will slow down considerably (some package.json's have taken like 40 seconds for me) as I have to fetch the data from NPM and then paginate Github for the releases.. but they are written into DB as we go -> so for each new request, the subsequent request will faster!!. For convenience, I ignore any dependencies prefixed with @types/
as they don't really add much value IMO.
![image](https://private-user-images.githubusercontent.com/46552510/354787993-0d06e385-a45f-4c07-9ae1-55d451489607.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1MTQyNjksIm5iZiI6MTczOTUxMzk2OSwicGF0aCI6Ii80NjU1MjUxMC8zNTQ3ODc5OTMtMGQwNmUzODUtYTQ1Zi00YzA3LTlhZTEtNTVkNDUxNDg5NjA3LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE0VDA2MTkyOVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTVjNjQ4YjE2YTE4ZjI1MDUwNjk4OTI1NTAyZGEyZWNlNWYyZTU2MjRjNzhkNWQ3YzY1MWUxZmYyMGY3ZmNmNDImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.NFz9LZTRD9nvO-_UJG8PRQeA-oS1AsBJ71kgCtsArdg)