0

For crypto-js, it was easy to use it like:

<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js"></script>

Is there any similar option for bcrypt, so that I can add it to a static page?

Kevin M. Mansour
  • 2,915
  • 6
  • 18
  • 35
Harsh
  • 363
  • 4
  • 14
  • 1
    First result of googling "cdn bcryptjs" gives you [this](https://cdnjs.com/libraries/bcryptjs/2.2.0). Have you even tried to find it on your own? – Geshode Jun 13 '23 at 02:44
  • actually I was lacking the right key words, I was using sort of elaborated words for searching, in vain. – Harsh Jun 13 '23 at 15:52

1 Answers1

1

You can find it on jsDelivr. I'd have to note that bcryptjs (last update was 6 years ago - quite old) is a modified version of bcrypt (last update was 8 months ago - it's the official version anyway). if you want to use bcryptjs, find it on jsDeliver too (yet not recommended).

Kevin M. Mansour
  • 2,915
  • 6
  • 18
  • 35