Skip to content
On this page

Vivace-Tool

开源、模块化、高性能的 JavaScript 实用工具库

安装

1. 浏览器环境

js
<script src="vivace-tool.umd.min.js"></script>
const { sum } = vivaceTool

使用方式:

js
<script>
  let { sum } = vivaceTool;
  alert(sum(1, 2))
</script>

2. npm

shell
npm install --save vivace-tool

使用方式:

js
import { sum } from 'vivace-tool'
alert(sum(1, 2))

3. node.js

shell
npm install --save vivace-tool

使用方式:

js
var { sumn } = require('vivacedemo');
alert(sum(1, 2))

开源贡献

视频讲解

提交PR说明

Released under the MIT License.