Skip to content

zignis/keywee

Repository files navigation

🥝 KeyWee

Yet another performant utility library

Package version Package downloads Package license Continuous Integrations Package tree-shaking Package types Package minified size Package dependency count

Banner


But who asked for this, when there are already libraries like lodash and underscore?

I am a fan of what Lodash (or underscore) offers, however this library exports some of the most bizarre and unusual utility methods that you might need from time to time, and it would have made no sense to introduce these methods to a generic utility library like Lodash. Further, KeyWee is 100% ES6 compliant and supports tree-shaking out of the box.

Installation

# NPM
npm install keywee

# Yarn
yarn add keywee

Installation from a CDN

KeyWee has a UMD bundle available through JSDelivr and Unpkg CDNs.

<!-- From UNPKG -->
<script src="https://unpkg.com/keywee"></script>

<!-- From JSDelivr -->
<script src="https://cdn.jsdelivr.net/npm/keywee"></script>

<script>
  // UMD module is exposed through the "keywee" global variable
  console.log(keywee);
</script>

License

KeyWee is released under the MIT License.