1.3.0 • Published 11 months ago

boots-js v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

logo

Being needed by others is a very happy thing, so there is BootsJS, a powerful JS tool library.

EN | 中文

Installation

npm:

npm install boots-js

yarn:

yarn add boots-js

cdn:

https://unpkg.com/boots-js@latest/umd/index.js

Usage

CommonJS

// Global Import
const BootsJS=require('boots-js/cjs');
BootsJS.ObjectUtils.type(123);
// Import on Demand
const  ObjectUtils  = require('boots-js/cjs/object-utils');
ObjectUtils.type(123);

Browser

// Global Import
<script src="https://unpkg.com/boots-js@latest/umd/index.js"></script>
<script>BootsJS.ObjectUtils.type(123);</script>
// Import on Demand
<script src="https://unpkg.com/boots-js@latest/umd/object-utils.js"></script>
<script>ObjectUtils.type(123);</script>

ES6 Module

// Global Import
import BootsJS from 'boots-js'
BootsJS.ObjectUtils.type(123);
// Import on Demand
import  ObjectUtils  from 'boots-js/object-utils' 
ObjectUtils.type(123);

All Features

Click to view

Contribute

Click to view

1.3.0

11 months ago

1.2.0

12 months ago

1.1.0

12 months ago

1.0.0

12 months ago

0.9.2-beta

12 months ago

0.9.1-beta

12 months ago

0.9.0-beta

12 months ago

0.8.0-beta

1 year ago

0.7.0-beta

1 year ago

0.6.0-beta

1 year ago

0.5.0-beta

1 year ago

0.4.0-beta

1 year ago

0.3.0-beta

1 year ago

0.1.0-beta

1 year ago

0.0.9-beta

1 year ago

0.0.8-beta

1 year ago

0.0.7-beta

1 year ago

0.0.6-beta

1 year ago

0.0.5-beta

1 year ago

0.0.4-beta

1 year ago

0.0.3-beta

1 year ago

0.0.2-beta

1 year ago

0.0.1-beta

1 year ago

0.0.0-beta

1 year ago