# ripple-lib Drops Lodash Requirement in Browsers [Version 1.10.0](https://github.com/ripple/ripple-lib/releases/tag/1.10.0) of ripple-lib, the JavaScript/TypeScript library for the XRP Ledger, no longer requires a separate Lodash script to run in web browsers. This change comes alongside other continued improvements in the library, improving the experience of developing applications on the XRP Ledger. ## Update Your Script Tags Starting with 1.10.0, ripple-lib incorporates Lodash into the browser-ready JavaScript build, so you can import just the library and get a working environment. Previously, you needed a separate script tag to import the Lodash dependency in web browsers. **Before:** ```html ``` **After:** ```html ``` You can safely update ripple-lib to 1.10.0 even if you haven't removed the Lodash script tag. The extra script tag is now an unnecessary extra download for most cases, but it doesn't cause errors if it's still there. ## Same Process on Node.js There is no change to how dependencies are managed when using ripple-lib in Node.js. ## Other Changes As always, version 1.10.0 includes various minor improvements to fix bugs and improve documentation. There's also a new API method to call the [Testnet (or Devnet) faucet](https://xrpl.org/xrp-testnet-faucet.html) to get a new account pre-funded with test XRP. This method automatically selects the appropriate faucet based on which network you're already connected to. (It raises an error if you're connected to the Mainnet!) Example usage: ```js const ripple = require('ripple-lib') // Node.js only. Use a