npm install bizarre
html
`
2. nodejs
`shell
npm install bizarre
`
`javascript
// all
const Bizarre = require("bizarre");
console.log(Bizarre.Common.helloWorld());
// part
const helloWorld = require("bizarre/lib/common").helloWorld;
console.log(helloWorld());
`
更多应用场景
Api
Api简单划分为Common(通用)、Web(浏览器环境)、Node(nodejs环境)
目前Api数量
Common:0个,Web:2个,Node: 0`个