# multi-platform-plus

> ```js

Latest version **1.1.25** (published 2021-06-25) · ISC license · 0 weekly downloads

## Install

```sh
npm install multi-platform-plus
pnpm add multi-platform-plus
yarn add multi-platform-plus
bun add multi-platform-plus
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.25 |
| Published | 2021-06-25 |
| First published | 2020-11-26 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 113.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | irobotda1, nuomizi55 |

## Links

- npm: https://www.npmjs.com/package/multi-platform-plus
- npm.io page: https://npm.io/package/multi-platform-plus

## Dependencies (2)

- [ijsbridge](https://npm.io/package/ijsbridge.md) ^2.2.1
- [weixin-js-sdk](https://npm.io/package/weixin-js-sdk.md) ^1.6.0

## Recent versions

- 1.1.25 (latest) — 2021-06-25
- 1.1.24 — 2021-06-25
- 1.1.23 — 2021-06-25
- 1.1.22 — 2021-06-25
- 1.1.21 — 2021-05-10
- 1.1.20 — 2021-05-08
- 1.1.19 — 2021-05-07
- 1.1.18 — 2021-04-09
- 1.1.17 — 2021-04-01
- 1.1.16 — 2021-03-26
- 1.1.15 — 2021-03-09
- 1.1.14 — 2021-03-03
- 1.1.13 — 2021-03-03
- 1.1.12 — 2021-01-27
- 1.1.11 — 2021-01-27
- … 16 more at https://npm.io/package/multi-platform-plus/versions

## README

## 创奇 多平台兼容工具包



## 使用说明


## 自定义平台 package.json扩展配置用法（拷贝代码记得去掉注释！）
```js

/**  package.json其它原有配置  **/      
"uni-app": {// 扩展配置
    "scripts": {
        "custom-platform": { //自定义编译平台配置，可通过cli方式调用
            "title":"自定义扩展名称", // 在HBuilderX中会显示在 运行/发行 菜单中
            "BROWSER":"",  //运行到的目标浏览器，仅当UNI_PLATFORM为h5时有效
            "env": {//环境变量
                "UNI_PLATFORM": "",  //基准平台
                "MY_TEST": "", // ... 其他自定义环境变量
            },
            "define": { //自定义条件编译
                "CUSTOM-CONST": true //自定义条件编译常量，建议为大写
            }
        }
    }    
}
```

## 在main.js 不同平台引入不同的npm包
```js

1) 创奇平台

//#ifdef H5-CQ
    console.log("[Multi]", "使用平台[CQ]");
    import { WebBridgeApi } from 'ijsbridge';
    Vue.prototype.WebBridgeApi = WebBridgeApi;
//#endif

2) 小程序平台

//#ifdef MP
    console.log("[Multi]", "使用平台[MP]");
    const UniCls = require("multi-platform-plus/lib/Uniapp/Index.js").default;
    Vue.prototype.WebBridgeApi = new UniCls();
//#endif

3) 网页H5平台

//#ifdef H5-WEB
    console.log("[Multi]", "使用平台[H5]");
    const UniCls = require("multi-platform-plus/lib/H5web/Index.js").default;
    Vue.prototype.WebBridgeApi = new UniCls();
//#endif

```

---
_Source: https://npm.io/package/multi-platform-plus · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
